More tests update
[ACE_TAO.git] / TAO / tests / Bug_2084_Regression / Hello.h
blobf7d4bc3b66190025a5dfbc42fb29ef32e47469c1
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,
18 ACE_thread_t thr_id);
20 // = The skeleton methods
21 virtual char * get_string ( ::Test::ThreadId caller_threadid);
23 virtual void shutdown (void);
25 private:
26 /// Use an ORB reference to convert strings to objects and shutdown
27 /// the application.
28 CORBA::ORB_var orb_;
30 ACE_thread_t const thr_id_;
33 #include /**/ "ace/post.h"
34 #endif /* HELLO_H */