Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Bug_3953_Regression / server_i.h
blob1ffab0f94374c4322f2cdd7a4c0e66d921295f4a
1 #include "testS.h"
3 class server_i : public POA_server
5 public:
6 server_i (int quiet,
7 CORBA::ORB_ptr orb);
9 void ping (CORBA::UShort time_to_live);
11 void start (client_ptr c,
12 CORBA::UShort time_to_live);
14 void shutdown ();
16 bool exception () const;
17 private:
18 int quiet_;
19 // Be quiet.
21 client_var client_;
22 // Pointer to server.
24 CORBA::ORB_var orb_;
25 // Pointer to orb.
27 bool exception_;