Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_2084_Regression / Hello.h
blob6101540e48d23993f84c913cbe092245d1859675
1 // -*- C++ -*-
3 #ifndef HELLO_H
4 #define HELLO_H
5 #include /**/ "ace/pre.h"
7 #include "TestS.h"
9 #include "ace/OS_NS_Thread.h"
11 /// Implement the Test::Hello interface
12 class Hello
13 : public virtual POA_Test::Hello
15 public:
16 /// Constructor
17 Hello (CORBA::ORB_ptr orb);
19 virtual char * get_string (::Test::ThreadId caller_threadid);
21 virtual void shutdown ();
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 */