Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Object_Loader / Loader.h
bloba8c70cee8c369f3a1935a50174d25c838ca29654
2 //=============================================================================
3 /**
4 * @file Loader.h
6 * @author Carlos O'Ryan
7 */
8 //=============================================================================
11 #ifndef TAO_OBJECT_LOADER_LOADER_H
12 #define TAO_OBJECT_LOADER_LOADER_H
14 #include "tao/Object_Loader.h"
15 #include "OLT_Export.h"
17 /**
18 * @class Loader
20 * @brief Implement the Test interface
22 class OLT_Export Loader : public TAO_Object_Loader
24 public:
25 /// ctor
26 Loader (void);
28 /// Create a new instance
29 virtual CORBA::Object_ptr create_object (CORBA::ORB_ptr orb,
30 int argc,
31 ACE_TCHAR *argv[]);
34 // ACE_STATIC_SVC_DECLARE (Loader)
35 ACE_FACTORY_DECLARE (OLT, Loader)
37 #endif /* TAO_OBJECT_LOADER_LOADER_H */