ObsAct.h
Go to the documentation of this file.
00001 // written by png shao wei
00002 // StateObsAct is for base class
00003 // ObsAct is for Observation and Action
00004 // State inherits StateObsAct and it has additional previous and current values
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


appl
Author(s): petercai
autogenerated on Tue Jan 7 2014 11:02:29