Go to the documentation of this file.00001
00011 #include <rmscpp/user_studies/study_logs/study_log.h>
00012
00013 using namespace std;
00014 using namespace rms;
00015
00016 study_log::study_log(int logid, int expid, string timestamp, string entry)
00017 {
00018
00019 this->logid = logid;
00020 this->expid = expid;
00021 this->timestamp = timestamp;
00022 this->entry = entry;
00023 }
00024
00025 int study_log::get_logid()
00026 {
00027 return logid;
00028 }
00029
00030 int study_log::get_expid()
00031 {
00032 return expid;
00033 }
00034
00035 string study_log::get_timestamp()
00036 {
00037 return timestamp;
00038 }
00039
00040 string study_log::get_entry()
00041 {
00042 return entry;
00043 }