#include <PICurrent_Loader.h>
Inheritance diagram for TAO_PICurrent_Loader:
Public Member Functions | |
virtual CORBA::Object_ptr | create_object (CORBA::ORB_ptr orb, int argc, ACE_TCHAR *argv[]) |
Creates a PICurrent and returns it. |
|
Creates a PICurrent and returns it.
Implements TAO_Object_Loader. Definition at line 31 of file PICurrent_Loader.cpp. References CORBA::Object::_nil(), ACE_NEW_RETURN, and CORBA::Object_ptr.
00032 { 00033 CORBA::Object_ptr obj = CORBA::Object_ptr (); 00034 ACE_NEW_RETURN (obj, 00035 TAO::PICurrent (*orb->orb_core ()), 00036 CORBA::Object::_nil ()); 00037 return obj; 00038 } |