Go to the documentation of this file.00001
00011 #include <rmscpp/user_studies/conditions/condition.h>
00012
00013 using namespace std;
00014 using namespace rms;
00015
00016 condition::condition(int condid, int studyid, string name, int intid)
00017 {
00018
00019 this->condid = condid;
00020 this->studyid = studyid;
00021 this->name = name;
00022 this->intid = intid;
00023 }
00024
00025 int condition::get_condid()
00026 {
00027 return condid;
00028 }
00029
00030 int condition::get_studyid()
00031 {
00032 return studyid;
00033 }
00034
00035 string condition::get_name()
00036 {
00037 return name;
00038 }
00039
00040 int condition::get_intid()
00041 {
00042 return intid;
00043 }