summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/Config_Handlers/RDD_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/DAnCE/Config_Handlers/RDD_Handler.h')
-rw-r--r--TAO/CIAO/DAnCE/Config_Handlers/RDD_Handler.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/TAO/CIAO/DAnCE/Config_Handlers/RDD_Handler.h b/TAO/CIAO/DAnCE/Config_Handlers/RDD_Handler.h
new file mode 100644
index 00000000000..1696c58c5f5
--- /dev/null
+++ b/TAO/CIAO/DAnCE/Config_Handlers/RDD_Handler.h
@@ -0,0 +1,69 @@
+
+ //==============================================================
+/**
+ * @file RDD_Handler.h
+ *
+ * $Id$
+ *
+ * @author Jules White <jules@dre.vanderbilt.edu>
+ */
+//================================================================
+
+#ifndef CIAO_CONFIG_HANDLERS_RDD_Handler_H
+#define CIAO_CONFIG_HANDLERS_RDD_Handler_H
+#include /**/ "ace/pre.h"
+
+#include "Base_Handler.h"
+#include "Config_Handlers_export.h"
+#include "ace/config-lite.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+
+
+namespace Deployment
+{
+ class ResourceDeploymentDescription;
+}
+
+
+namespace CIAO
+{
+
+ namespace Config_Handlers
+ {
+
+ class ResourceDeploymentDescription;
+
+
+ /*
+ * @class RDD_Handler
+ *
+ * @brief Handler class for <ResourceDeploymentDescription> types.
+ *
+ * This class defines handler methods to map values from
+ * XSC ResourceDeploymentDescription objects, parsed from the descriptor files, to the
+ * corresponding CORBA IDL Any type.
+ *
+ */
+
+ class Config_Handlers_Export RDD_Handler : public Base_Handler{
+
+ public:
+
+ RDD_Handler (void);
+ virtual ~RDD_Handler (void);
+
+ void get_ResourceDeploymentDescription (
+ Deployment::ResourceDeploymentDescription& toconfig,
+ ResourceDeploymentDescription& desc);
+
+ };
+ }
+}
+
+#include /**/ "ace/post.h"
+#endif /* CIAO_CONFIG_HANDLERS_RDD_Handler_H */
+