summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/Config_Handlers/CCD_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/DAnCE/Config_Handlers/CCD_Handler.h')
-rw-r--r--TAO/CIAO/DAnCE/Config_Handlers/CCD_Handler.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/CIAO/DAnCE/Config_Handlers/CCD_Handler.h b/TAO/CIAO/DAnCE/Config_Handlers/CCD_Handler.h
new file mode 100644
index 00000000000..cbcf1dbec8c
--- /dev/null
+++ b/TAO/CIAO/DAnCE/Config_Handlers/CCD_Handler.h
@@ -0,0 +1,55 @@
+//================================================
+/**
+ * @file CID_Handler.h
+ *
+ * $Id$
+ *
+ * @author Jules White <jules@dre.vanderbilt.edu>
+ */
+//================================================
+
+#ifndef CIAO_CONFIG_HANDLERS_CCD_HANDLER_H
+#define CIAO_CONFIG_HANDLERS_CCD_HANDLER_H
+#include /**/ "ace/pre.h"
+
+#include "Config_Handlers/Config_Handlers_Export.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "Config_Handlers/cid.hpp"
+
+namespace Deployment
+{
+ class ComponentInterfaceDescription;
+}
+
+namespace CIAO
+{
+ namespace Config_Handlers
+ {
+ /*
+ * @class CCD_Handler
+ *
+ * @brief Handler class for <ComponentInterfaceDescription> types.
+ *
+ * This class is named CCD_Handler but actually fills
+ * <ComponentInterfaceDescription>. Why is this confusion? We
+ * want to maintain the correlation between the XSD file and the
+ * actual datatype. The file name corresponds to the XSD file but
+ * the data type being filled in is of type
+ * <ComponentInterfaceDescription>
+ */
+ class Config_Handlers_Export CCD_Handler
+ {
+ public:
+ static bool component_interface_descr (
+ Deployment::ComponentInterfaceDescription& toconfig,
+ ComponentInterfaceDescription& desc);
+ };
+ }
+}
+
+#include /**/ "ace/post.h"
+#endif /* CID_HANDLER_H */