Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Servant_To_Reference_Test / Test_i.h
bloba33ac60baf4898e76e35a24663a6c88efa739960
2 #ifndef HELLO_H
3 #define HELLO_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 class One_Impl
9 : public virtual POA_Test::One
11 public:
12 /// Constructor
13 One_Impl (CORBA::ORB_ptr orb);
15 // = The skeleton methods
16 virtual char * get_string (void);
18 private:
19 /// Use an ORB reference to convert strings to objects and shutdown
20 /// the application.
21 CORBA::ORB_var orb_;
24 class Two_Impl
25 : public virtual POA_Test::Two
27 public:
28 /// Constructor
29 Two_Impl (CORBA::ORB_ptr orb);
31 // = The skeleton methods
32 virtual char * get_string (void);
34 private:
35 /// Use an ORB reference to convert strings to objects and shutdown
36 /// the application.
37 CORBA::ORB_var orb_;
40 class Three_Impl
41 : public virtual POA_Test::Three
43 public:
44 /// Constructor
45 Three_Impl (CORBA::ORB_ptr orb);
47 // = The skeleton methods
48 virtual char * get_string (void);
50 private:
51 /// Use an ORB reference to convert strings to objects and shutdown
52 /// the application.
53 CORBA::ORB_var orb_;
56 #include /**/ "ace/post.h"
57 #endif /* HELLO_H */