summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_3444_Regression/Test_impl.h
blob: 12a504f72307f8b84d6ef25cbc420c762b6907d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

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