summaryrefslogtreecommitdiff
path: root/tests/Object_Loader/Loader.h
blob: 0d2ed52f964100338bec585c05f18c5af7aa4ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

//=============================================================================
/**
 *  @file   Loader.h
 *
 *  $Id$
 *
 *  @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 Loader
 *
 * @brief Implement the Test interface
 *
 */
class OLT_Export Loader : public TAO_Object_Loader
{
public:
  /// ctor
  Loader (void);

  /// Create a new instance
  virtual CORBA::Object_ptr create_object (CORBA::ORB_ptr orb,
                                           int argc,
                                           ACE_TCHAR *argv[]);
};

// ACE_STATIC_SVC_DECLARE (Loader)
ACE_FACTORY_DECLARE (OLT, Loader)

#endif /* TAO_OBJECT_LOADER_LOADER_H */