diff options
Diffstat (limited to 'TAO/tests/Object_Loader/Loader.h')
-rw-r--r-- | TAO/tests/Object_Loader/Loader.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/tests/Object_Loader/Loader.h b/TAO/tests/Object_Loader/Loader.h new file mode 100644 index 00000000000..73b4c5708f4 --- /dev/null +++ b/TAO/tests/Object_Loader/Loader.h @@ -0,0 +1,44 @@ +// $Id$ + +// ============================================================================ +// +// = LIBRARY +// TAO/tests/Object_Loader +// +// = FILENAME +// Loader.h +// +// = AUTHOR +// Carlos O'Ryan +// +// ============================================================================ + +#ifndef TAO_OBJECT_LOADER_LOADER_H +#define TAO_OBJECT_LOADER_LOADER_H + +#include "tao/Object_Loader.h" +#include "OLT_Export.h" + +class OLT_Export Loader : public TAO_Object_Loader +{ + // = TITLE + // Implement the Test interface + // + // = DESCRIPTION + // +public: + Loader (void); + // ctor + + virtual CORBA::Object_ptr create_object (CORBA::ORB_ptr orb, + int argc, + char *argv [] + ACE_ENV_ARG_DECL_NOT_USED) + ACE_THROW_SPEC ((CORBA::SystemException)); + // Create a new instance +}; + +// ACE_STATIC_SVC_DECLARE (Loader) +ACE_FACTORY_DECLARE (OLT, Loader) + +#endif /* TAO_OBJECT_LOADER_LOADER_H */ |