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