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

#include "testS.h"

class Simple_Server_i : public POA_Simple_Server
{
public:
  Simple_Server_i (CORBA::ORB_ptr orb);
  // ctor

  virtual void remote_call ();

  virtual void shutdown ();

private:
  CORBA::ORB_var orb_;
};

#endif /* _TEST_I_H_ */