summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/tools/Convert_Plan/Convert_Plan_Impl.h
blob: 6be9fa23bd865857695c9926d8a3d998ddfde19c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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