More tests update
[ACE_TAO.git] / TAO / tests / ICMG_Any_Bug / Hello.h
blob319f621a6e9c7dd447e1c4a85225fe27b8f777aa
2 #ifndef HELLO_H
3 #define HELLO_H
4 #include /**/ "ace/pre.h"
6 #include "tao/ORB.h"
7 #include "TestS.h"
9 /// Implement the Test::Hello interface
10 ///
11 class Hello
12 : public virtual POA_Test::Hello
14 public:
16 /// Constructor
17 Hello (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa);
19 virtual Test::HelloWorld_ptr get_helloworld (void);
21 virtual void shutdown (void);
23 private:
25 PortableServer::POA_var poa_;
27 CORBA::ORB_var orb_;
30 #include /**/ "ace/post.h"
31 #endif /* HELLO_H */