summaryrefslogtreecommitdiff
path: root/TAO/tests/Server_Connection_Purging/Test_i.h
blob: 689d8c3cd7b5feec963e680d80c7839ec1a324c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// $Id$
//

#ifndef TEST_I_H
#define TEST_I_H
#include /**/ "ace/pre.h"

#include "TestS.h"

class test_i
  : public virtual POA_test
{
public:
  test_i (CORBA::ORB_ptr orb);

  // = The skeleton methods
  virtual void send_stuff (const char* string);

  virtual void shutdown (void);

private:
  CORBA::ORB_var orb_;
};

#include /**/ "ace/post.h"
#endif /* TEST_I_H */