blob: ec2e868c5254a2cddaa006901b05319e923a3b02 (
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
56
57
58
59
60
61
62
63
64
65
66
|
// $Id$
// ========================================================================
//
// = LIBRARY
// orbsvcs/IFR_Service
//
// = FILENAME
// IFR_Service.h
//
// = AUTHOR
// Jeff Parsons <parsons@cs.wustl.edu>
//
// =======================================================================
#ifndef IFR_SERVICE_H
#define IFR_SERVICE_H
#include "tao/PortableServer/PortableServerC.h"
#include "orbsvcs/orbsvcs/IFR_Service/IFR_Service_Utils.h"
#include "tao/ORB.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class IFR_Service
{
// = TITLE
// IFR_Service
//
// = DESCRIPTION
// A class that initializes, runs and shuts down
// the Interface Repository service.
public:
IFR_Service (void);
// Default constructor.
~IFR_Service (void);
// Destructor
int init (int argc,
char *argv[]
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
// Initialize the IFR service.
int fini (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
// Shut down the IFR Service.
int run (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
// Run the IFR service.
protected:
CORBA::ORB_var orb_;
// Reference to our ORB.
PortableServer::POA_var root_poa_;
// Root POA reference.
TAO_IFR_Server my_ifr_server_;
// IFR Server instance.
};
#endif /* IFR_SERVICE_H */
|