summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_2503_Regression/test_i.h
blob: 9c5f2e07fa324169b0ed8dd164db4d3a1d03b4a8 (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
// $Id$

#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)
    throw(CORBA::SystemException);

  virtual void shutdown (void)
    throw (CORBA::SystemException);

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

#endif // test_i_h