summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2709_Regression/TestImpl.h
blob: 6e31010ec83b54f4aab156b0c9512165ff1ea7cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "tao/ORB.h"
#include "TestS.h"

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

  // = The skeleton methods
  virtual void myMethod (void);

  virtual void shutdown (void);

private:
  CORBA::ORB_var orb_;
};