summaryrefslogtreecommitdiff
path: root/TAO/tests/MProfile_Forwarding/Manager.h
blob: 03a1fa9371e462a5cf4bdca2f5a309858e87e109 (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
//$Id$
#ifndef _MANAGER_H_
#define _MANAGER_H_

#include "Servant_Locator.h"

class Manager
{
  public:

  Manager (void);

  // Ctor

  int init (int argc,
            char *argv[]);

  // Initialize the ORB, POA etc.

  int init_register_name_service (void);
  // Initialize the Name service, tegister the combined IOR with it

  int activate_servant (void);
  // Activate the servant etc.

  int make_iors_register (void);

  int run (void);
  // Run the  ORB event loop..
 private:
  CORBA::ORB_var orb_;
  // Our ORB

  PortableServer::POA_var new_poa_var_;
  // The new poa that is created..

  Servant_Locator *servant_locator_;
  // Our servant locator

  PortableServer::ServantLocator_var servant_locator_var_;
  // Our servant locator var

  CORBA::Object_var new_manager_ior_;
};
#endif /*_MANAGER_H_ */