Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / CORBA_is_nil / Hello.h
blob1d57cd9c433d21ee4eca38b181e03a5e304799e3
2 #ifndef HELLO_H
3 #define HELLO_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Hello interface
9 class Hello
10 : public virtual POA_Test::Hello
12 public:
13 /// Constructor
14 Hello (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 char * get_string () override;
18 Test::Hello_ptr get_Hello () override;
20 void shutdown () override;
22 private:
23 /// Use an ORB reference to convert strings to objects and shutdown
24 /// the application.
25 CORBA::ORB_var orb_;
28 #include /**/ "ace/post.h"
29 #endif /* HELLO_H */