summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3953_Regression/server_i.h
blob: c8605f01478ff9beff23a79fda6c1a87ace97e6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "testS.h"

class server_i : public POA_server
{
public:
  server_i (int quiet,
            CORBA::ORB_ptr orb);

  void ping (CORBA::UShort time_to_live);

  void start (client_ptr c,
              CORBA::UShort time_to_live);

  void shutdown (void);

  bool exception (void) const;
private:
  int quiet_;
  // Be quiet.

  client_var client_;
  // Pointer to server.

  CORBA::ORB_var orb_;
  // Pointer to orb.

  bool exception_;
};