summaryrefslogtreecommitdiff
path: root/CIAO/ciao/ComponentServer/Configurators/Config_Manager.h
blob: 2ce46aa980f219d551ac455605d54585094c39fd (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
// -*- C++ -*-

//=============================================================================
/**
 *  @file    Config_Manager.h
 *
 *  $Id$
 *
 */
//=============================================================================


#ifndef CIAO_CONFIG_MANAGER_H
#define CIAO_CONFIG_MANAGER_H
#include /**/ "ace/pre.h"

#include "ace/config-all.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "ciao/ComponentServer/CIAO_ServerResourcesC.h"

namespace CIAO
{
  namespace Deployment
  {
    /**
     */
    class Config_Manager
    {
    public:
      virtual ~Config_Manager (void) {};
      
      virtual int pre_orb_initialize (void) = 0;
      
      virtual int post_orb_initialize (CORBA::ORB_ptr o) = 0;
      
      virtual void init_resources (const ServerResource &info) = 0;
      
      virtual void init (CORBA::ORB_ptr orb) = 0;
      
      virtual CORBA::PolicyList *find_policies_by_name (const char *name)= 0;
      
      virtual bool policy_exists (const char *name) = 0;
    };
  }
}

#include /**/ "ace/post.h"
#endif /* CIAO_CONFIG_MANAGER_H */