Class that loads the Compression library. More...
#include <Compression.h>


Public Member Functions | |
| virtual CORBA::Object_ptr | create_object (CORBA::ORB_ptr orb, int argc, ACE_TCHAR *argv[]) |
| Creates a Compression Manager and returns it. | |
Static Public Member Functions | |
| static int | Initializer (void) |
| Used to force the initialization of the ORB code. | |
Class that loads the Compression library.
Definition at line 37 of file Compression.h.
| CORBA::Object_ptr TAO_Compression_Loader::create_object | ( | CORBA::ORB_ptr | orb, | |
| int | argc, | |||
| ACE_TCHAR * | argv[] | |||
| ) | [virtual] |
Creates a Compression Manager and returns it.
Implements TAO_Object_Loader.
Definition at line 12 of file Compression.cpp.
{
CORBA::Object_ptr obj = CORBA::Object::_nil ();
ACE_NEW_RETURN (obj,
TAO::CompressionManager (),
CORBA::Object::_nil ());
return obj;
}
| int TAO_Compression_Loader::Initializer | ( | void | ) | [static] |
Used to force the initialization of the ORB code.
Definition at line 23 of file Compression.cpp.
{
return ACE_Service_Config::process_directive (
ace_svc_desc_TAO_Compression_Loader);
}
1.7.0