Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Multiple_Retry_Tests / Retry_On_Connection_Failure / Hello.h
blob206dc46fb2ca8a44ff62e71f4e5af91ba3ab50f2
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 virtual char * get_string (void);
19 virtual void set_string (const char * s);
21 virtual void shutdown (void);
23 private:
24 /// Use an ORB reference to convert strings to objects and shutdown
25 /// the application.
26 CORBA::ORB_var orb_;
29 #include /**/ "ace/post.h"
30 #endif /* HELLO_H */