summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3108_Regression/test_i.h
blob: a81166bf3e3675bc7c24ec3cc3a4d5a5523b5a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef TEST_I_HH
#define TEST_I_HH
#include "testS.h"

class test_i :
public POA_test
{
public:
  /// Constructor.
  test_i (CORBA::ORB_ptr orb);

  /// Test method.
  CORBA::Long test_method ();
  virtual void shutdown (void);

private:
  CORBA::ORB_var orb_;
};
#endif