summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/tools/Convert_Plan/Convert_Plan_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/DAnCE/tools/Convert_Plan/Convert_Plan_Impl.h')
-rw-r--r--modules/CIAO/DAnCE/tools/Convert_Plan/Convert_Plan_Impl.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/CIAO/DAnCE/tools/Convert_Plan/Convert_Plan_Impl.h b/modules/CIAO/DAnCE/tools/Convert_Plan/Convert_Plan_Impl.h
new file mode 100644
index 00000000000..a54b542e886
--- /dev/null
+++ b/modules/CIAO/DAnCE/tools/Convert_Plan/Convert_Plan_Impl.h
@@ -0,0 +1,26 @@
+// $Id$
+
+/**
+ * @file Convert_Plan_Impl.h
+ *
+ * @author William R. Otte <wotte@dre.vanderbilt.edu>
+ */
+
+#ifndef DANCE_CONVERT_PLAN_H
+#define DANCE_CONVERT_PLAN_H
+
+#include "Convert_Plan/DAnCE_Convert_Plan_export.h"
+#include "Deployment/Deployment_DeploymentPlanC.h"
+
+namespace DAnCE
+{
+ class DAnCE_Convert_Plan_Export Convert_Plan
+ {
+ public:
+ static Deployment::DeploymentPlan * read_xml_plan (const char *filename);
+ static Deployment::DeploymentPlan * read_cdr_plan (const char *filename);
+ static bool write_cdr_plan (const char *filename, Deployment::DeploymentPlan &plan);
+ };
+}
+
+#endif