Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Parallel_Connect_Strategy / Test_i.h
blob0eff73b74dd449aeb9d77fd7776fe0bdb8504826
1 // -*- C++ -*-
4 #ifndef TEST_I_H
5 #define TEST_I_H
6 #include /**/ "ace/pre.h"
8 #include "TestS.h"
10 /// Implement the Test::Hello interface
11 class Hello
12 : public virtual POA_Test::Hello
14 public:
15 /// Constructor
16 Hello (CORBA::ORB_ptr orb);
18 // = The skeleton methods
19 virtual char * get_string ();
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 /* TEST_I_H */