Go to the documentation of this file.00001
00002
00003
00004
00005
00006 #ifndef ObsAct_H
00007 #define ObsAct_H
00008
00009 #include <iostream>
00010 #include <vector>
00011 #include <iterator>
00012 #include "StateObsAct.h"
00013
00014
00015 using namespace std;
00016
00017 class ObsAct: public StateObsAct {
00018 protected:
00019 string vname;
00020
00021 public:
00022 void setVName(string str);
00023
00024 string getVName() const;
00025
00026 std::ostream& write(std::ostream& out);
00027 };
00028
00029 #endif