Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / ICMG_Any_Bug / Hello.h
blob1d2b0256a54bff29a254a12c8c49b080897314f9
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:
15 /// Constructor
16 Hello (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa);
18 virtual Test::HelloWorld_ptr get_helloworld ();
20 virtual void shutdown ();
22 private:
23 PortableServer::POA_var poa_;
25 CORBA::ORB_var orb_;
28 #include /**/ "ace/post.h"
29 #endif /* HELLO_H */