00001 00008 #ifndef PARSER_H 00009 #define PARSER_H 00010 00011 #include <string> 00012 #include "POMDP.h" 00013 00014 using namespace std; 00015 00016 namespace momdp{ 00017 00018 class Parser{ 00019 public: 00023 Parser(); 00024 00032 POMDP* parse(string probName, bool useFastParser); 00033 00037 ~Parser(); 00038 00039 }; 00040 00041 } 00042 #endif