summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_3444_Regression/Test_impl.h
blob: 1fe5ec980c9f8a3bc7021b900aaebbaf26763b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef TEST_IMPL_HPP
#define TEST_IMPL_HPP

#include "TestS.h"

class Server_impl : public virtual POA_Test::Server
{
public:
  Server_impl (CORBA::ORB_ptr orb);

  virtual void shutdown ();

private:
  CORBA::ORB_var orb_;
};

#endif /* TEST_IMPL_HPP */