summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Valuetype_Factories/ConfigValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/Valuetype_Factories/ConfigValue.h')
-rw-r--r--modules/CIAO/ciao/Valuetype_Factories/ConfigValue.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/Valuetype_Factories/ConfigValue.h b/modules/CIAO/ciao/Valuetype_Factories/ConfigValue.h
new file mode 100644
index 00000000000..3592c045f79
--- /dev/null
+++ b/modules/CIAO/ciao/Valuetype_Factories/ConfigValue.h
@@ -0,0 +1,38 @@
+// $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 */