summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/NodeApplication/NoOp_Configurator.cpp
blob: 4ffe48cd7d219796ca4c64f0c7c7e7a193295839 (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
// $Id$

#include "NoOp_Configurator.h"

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

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

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

int
CIAO::NoOp_Configurator::init_resource_manager
(const ::Deployment::Properties & /*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 *
CIAO::NoOp_Configurator::find_container_policies
(const ::Deployment::Properties & /*properties*/)
{
  // Not much to do.

  return 0;
}