Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Collocated_DerivedIF / Hello.h
blobb1ac7dacbd1186fb75938729c8be73457be23577
2 #ifndef HELLO_H
3 #define HELLO_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::HelloAgain interface
9 class HelloAgain
10 : //public virtual Test::Hello,
11 public virtual POA_Test::HelloAgain
13 public:
14 /// Constructor
15 HelloAgain(CORBA::ORB_ptr orb,
16 ACE_thread_t thr_id);
18 // = The skeleton methods
19 virtual char * get_string_again ();
20 virtual char * get_string ();
21 virtual void shutdown ();
24 private:
25 /// Use an ORB reference to convert strings to objects and shutdown
26 /// the application.
27 CORBA::ORB_var orb_;
28 ACE_thread_t thr_id_;
32 #include /**/ "ace/post.h"
33 #endif /* HELLO_H */