summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/ComponentServer/Configurators/NoOp/NoOp_Configurator.cpp
blob: e4c377e436a743e4fd6f03e266658af2ca7ab415 (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
// $Id$

#include "NoOp_Configurator.h"

namespace CIAO
{
  namespace Deployment
  {

    NoOp_Configurator::~NoOp_Configurator (void)
    {
      // Not much to do.
    }

    int
    NoOp_Configurator::pre_orb_initialize ()
    {
      return 0;
    }

    int
    NoOp_Configurator::post_orb_initialize (CORBA::ORB_ptr)
    {
      return 0;
    }

    int
    NoOp_Configurator::init_resource_manager
    (const ::Components::ConfigValues & /*properties*/)
    {
      // @@ Currently do thing.  We should go over the resource struct in
      // the future and throw exceptions if there are
      // un-recognizable/supported stuff in it.
      return 0;
    }

    CORBA::PolicyList *
    NoOp_Configurator::find_container_policies
    (const ::Components::ConfigValues & /*properties*/)
    {
      // Not much to do.

      return 0;
    }
  }
}