Hi is there anyway to quickly familiarize with the datatypes being used . It gets confusing sometimes for example<br>        CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);<br>        CORBA::Object_var obj = getObjectReference(orb);  //orb is of type CORBA::ORB_var<br>
<br>However its being passed to a function which requires CORBA::ORB_ptr<br><span style="background-color:rgb(255,255,255);color:rgb(255,0,0)">static CORBA::Object_ptr getObjectReference(CORBA::ORB_ptr orb)</span><br style="background-color:rgb(255,255,255);color:rgb(255,0,0)">
<span style="background-color:rgb(255,255,255);color:rgb(255,0,0)">{...... }</span><br>