summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2503_Regression/test_i.h
blob: d4d4131ed763cae24cf678f31a57509a14e308bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef test_i_h
#define test_i_h

#include "TestS.h"

class test_i
  : public POA_Test
{
public:
  test_i(CORBA::ORB_ptr);

  virtual void the_operation(CORBA::Long & x);

  virtual void shutdown (void);

  char * create_and_activate_server(void);
private:
  CORBA::ORB_var orb_;
};

#endif // test_i_h