summaryrefslogtreecommitdiff
path: root/tests/POA/Generic_Servant/test_i.h
blob: 24094760497446ee12e1c18e4307ec3ddd111fd7 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// $Id$
//=============================================================================
//
//
// = FILENAME
//     test_i.h
//
// = DESCRIPTION
//     Defines test_i class for the test interface
//
// = AUTHOR
//     Irfan Pyarali
//
//=============================================================================

#include "testS.h"

class GENERIC_SERVANT_Export test_i : public POA_test
{
public:
  test_i (CORBA::ORB_ptr orb,
          PortableServer::POA_ptr poa);
  // Constructor - takes a POA and a value parameter

  PortableServer::POA_ptr _default_POA (void);
  // Returns the Default POA of this servant

  void method (void);
  // A twoway operation.

  void oneway_method (void);
  // A oneway operation.

  void timed_method (CORBA::ULong timeout);
  // A timed twoway operation.

  void timed_oneway_method (CORBA::ULong timeout);
  // A timed twoway operation.

  void shutdown (void);
  // Shutdown the ORB

  void sleep (CORBA::ULong timeout,
              const char *operation);
  // Sleep for some time.

protected:
  CORBA::ORB_var orb_;
  // Our ORB.

  PortableServer::POA_var poa_;
  // Our POA.
};