summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Valuetype_Factories/ConfigValue.h
blob: 11681ede8d8ec1d12182580054d0d32ce6e7cefe (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
// $Id$

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

#include "ccm/CCM_StandardConfiguratorC.h"

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

#include "ConfigValue_Export.h"
// #include "ace/Active_Map_Manager.h"

namespace CIAO
{
  class ConfigValue_Factory_Export ConfigValue_impl
    : public virtual OBV_Components::ConfigValue,
      public virtual CORBA::DefaultValueRefCountBase
  {
  public:
    ConfigValue_impl();
    ConfigValue_impl(const char* the_name, const CORBA::Any& the_value);
    ~ConfigValue_impl() throw();
    virtual CORBA::ValueBase* _copy_value();
  };

  class ConfigValueFactory : virtual public Components::ConfigValue_init
  {
  public:
     CORBA::ValueBase * create_for_unmarshal ();
  };
}

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