Go to the documentation of this file.00001 #ifndef ParserSelector_H
00002 #define ParserSelector_H
00003 #include <fstream>
00004 #include "MOMDP.h"
00005 #include "FactoredPomdp.h"
00006 #include "solverUtils.h"
00007
00008 using namespace momdp;
00009 using namespace std;
00010 namespace momdp
00011 {
00012
00013 class ParserSelector
00014 {
00015 public:
00016 ParserSelector(void);
00017 ~ParserSelector(void);
00018 static SharedPointer<MOMDP> loadProblem(string problemName, SolverParams& solverParam);
00019 };
00020 }
00021 #endif
00022