Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / COIOP / Hello.h
blob043a6968853b0988d8841d038c0b27143ff44c2b
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,
15 ACE_thread_t thr_id);
17 // = The skeleton methods
18 virtual char * get_string (void);
20 virtual void shutdown (void);
22 private:
23 /// Use an ORB reference to convert strings to objects and shutdown
24 /// the application.
25 CORBA::ORB_var orb_;
27 ACE_thread_t thr_id_;
30 #include /**/ "ace/post.h"
31 #endif /* HELLO_H */