blob: e851eae2fcd6a124a8e7911a41053af47d10d3d2 (
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
|
// -*- C++ -*-
#ifndef OBJECT_FACTORY_I_H
#define OBJECT_FACTORY_I_H
#include "Two_ObjectsS.h"
#include "First_i.h"
#include "Second_i.h"
#include "ace/Auto_Event.h"
/// Implement the MTServer::Test interface
class Object_Factory_i
: public virtual POA_Two_Objects_Test::Object_Factory
{
public:
Object_Factory_i (CORBA::ORB_ptr orb,
CORBA::ULong len);
Two_Objects_Test::First_ptr create_first ();
Two_Objects_Test::Second_ptr create_second ();
private:
/// Use an ORB reference to convert strings to objects and shutdown
/// the application.
CORBA::ORB_var orb_;
CORBA::ULong length_;
ACE_Auto_Event two_way_done_;
};
#endif /* OBJECT_FACTORY_I_H */
|