00001 00011 #ifndef STUDY_LOG_H_ 00012 #define STUDY_LOG_H_ 00013 00014 #include <string> 00015 00020 namespace rms 00021 { 00028 class study_log 00029 { 00030 public: 00039 study_log(int logid, int expid, std::string timestamp, std::string entry); 00040 00046 int get_logid(); 00052 int get_expid(); 00058 std::string get_timestamp(); 00064 std::string get_entry(); 00065 00066 private: 00067 int logid, expid; 00068 std::string timestamp, entry; 00069 }; 00070 } 00071 00072 #endif