summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_3276_Regression/test_i.h
blob: b301f1f6945ef93a1e895a9f2a71f9e6fde5d162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

#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_ */