summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/Config_Handlers/RS_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/DAnCE/Config_Handlers/RS_Handler.h')
-rw-r--r--TAO/CIAO/DAnCE/Config_Handlers/RS_Handler.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/TAO/CIAO/DAnCE/Config_Handlers/RS_Handler.h b/TAO/CIAO/DAnCE/Config_Handlers/RS_Handler.h
new file mode 100644
index 00000000000..11d858b4141
--- /dev/null
+++ b/TAO/CIAO/DAnCE/Config_Handlers/RS_Handler.h
@@ -0,0 +1,57 @@
+//==================================================================
+/**
+ * @file RS_Handler.h
+ *
+ * $Id$
+ *
+ * @author Arvind S. Krishna <arvindk@dre.vanderbilt.edu>
+ */
+//==================================================================
+
+#ifndef RS_HANDLER_H
+#define RS_HANDLER_H
+#include /**/ "ace/pre.h"
+
+#include "DeploymentC.h"
+#include "Config_Handler_export.h"
+
+#include <xercesc/util/XercesDefs.hpp>
+#include <xercesc/dom/DOM.hpp>
+#include "XercesString.h"
+
+using Config_Handler::XStr;
+using xercesc::XMLString;
+using xercesc::DOMText;
+using xercesc::DOMNodeIterator;
+using xercesc::DOMNode;
+
+namespace CIAO
+{
+ namespace Config_Handler
+ {
+ /**
+ * @class RS_Handler
+ *
+ * @brief Handler class for <RequirementSatisfier> type
+ *
+ * This class defines handler methods to parse RequirementSatisfier
+ * types in the descriptor files. The corresponding
+ * CORBA IDL type for the schema element is returned.
+ *
+ */
+ class Config_Handler_Export RS_Handler
+ {
+ public:
+ static void
+ process_RequirementSatisfier (DOMNodeIterator * iter,
+ Deployment::RequirementSatisfier &ret_struct);
+ // process elements of type RequirementSatisfier definitions in
+ // the descriptor files
+
+ };
+ }
+}
+
+#include /**/ "ace/post.h"
+
+#endif /* ID_HANDLER_H */