00001 #ifndef PLAN_PARSER_H 00002 #define PLAN_PARSER_H 00003 00004 #include <iostream> 00005 #include "continual_planning_executive/plan.h" 00006 00007 class PlanParser 00008 { 00009 private: 00010 PlanParser(); 00011 ~PlanParser(); 00012 00013 public: 00014 static bool parsePlan(std::istream & is, Plan & plan); 00015 }; 00016 00017 #endif 00018