#include <POA_Current_Factory.h>
Inheritance diagram for TAO_POA_Current_Factory:
Public Member Functions | |
virtual CORBA::Object_ptr | create_object (CORBA::ORB_ptr orb, int argc, ACE_TCHAR *argv[]) throw (CORBA::SystemException) |
Creates a PICurrent and returns it. |
|
Creates a PICurrent and returns it.
Implements TAO_Object_Loader. Definition at line 10 of file POA_Current_Factory.cpp. References ACE_NEW_RETURN.
00015 { 00016 TAO::Portable_Server::POA_Current* adapter = 0; 00017 ACE_NEW_RETURN (adapter, 00018 TAO::Portable_Server::POA_Current (), 00019 0); 00020 return adapter; 00021 } |