blob: f204395c0579a56d6ad4f91f5bfa39bad89b612a (
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
67
68
69
70
71
72
|
//$Id$
// -*- C++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// test
//
// = FILENAME
// Manager.h
//
// = DESCRIPTION
// A manager class that merger IORS and designates primary
//
// = AUTHOR
// Bala Natarajan <bala@cs.wustl.edu>
//
// ============================================================================
#ifndef TEST_FT_IOGR_MANAGER_H
#define TEST_FT_IOGR_MANAGER_H
#include "tao/ORB.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Object.h"
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */
class Manager
{
public:
Manager (void);
// Ctor
int init (int argc,
char *argv[],
CORBA::Environment & ACE_TRY_ENV);
// Initialize the ORB, POA etc.
int make_merged_iors (CORBA::Environment &);
// Merges the different IORS
int set_properties (CORBA::Environment &);
// Sets the properties for the profiles
int run (CORBA::Environment &ACE_TRY_ENV);
// Run the ORB event loop..
int write_to_file (void);
// Write the merged IOR to a file
CORBA::ORB_ptr orb (void);
// Return the pointer to the copy of our ORB
private:
CORBA::ORB_var orb_;
// Our ORB
CORBA::Object_var merged_set_;
// The merged IOR set
};
#endif /*TEST_FT_IOGR_MANAGER_H */
|