blob: af9afb37c430a89255ad4754d5d729639cb7013c (
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
54
55
|
// $Id$
//=============================================================================
//
//
// = FILENAME
// MyFooServant.h
//
// = DESCRIPTION
// Defines MyFooServant class for the Foo interface
//
// = AUTHOR
// Irfan Pyarali
//
//=============================================================================
#ifndef MYFOOSERVANT_H
#define MYFOOSERVANT_H
#include "FooS.h"
class GENERIC_SERVANT_Export MyFooServant : public POA_Foo
{
public:
// constructor - takes a POA and a value parameter
MyFooServant (CORBA::ORB_ptr orb,
PortableServer::POA_ptr poa,
CORBA::Long value);
// Destructor
virtual ~MyFooServant (void);
// Returns the Default POA of this Servant object
virtual PortableServer::POA_ptr _default_POA (CORBA::Environment &env);
// Simple doit method
virtual CORBA::Long doit (CORBA::Environment &env);
// Even simpler doit method
virtual void simply_doit (CORBA::Environment &env);
// Shutdown the ORB
virtual void shutdown (CORBA::Environment &env);
protected:
CORBA::ORB_var orb_;
// Keep a pointer to the ORB so we can shut it down.
PortableServer::POA_var poa_;
// Implement a different _default_POA()
CORBA::Long value_;
// The current value.
};
#endif /* MYFOOSERVANT_H */
|