summaryrefslogtreecommitdiff
path: root/TAO/tests/Object_Loader/Loader.h
blob: e79c3adc1969dc19a9448af80bc3f66eeddc563a (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

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

  /// 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 */