00001 00011 #ifndef CONDITION_H_ 00012 #define CONDITION_H_ 00013 00014 #include <string> 00015 00020 namespace rms 00021 { 00028 class condition 00029 { 00030 public: 00039 condition(int condid, int studyid, std::string name, int intid); 00040 00046 int get_condid(); 00052 int get_studyid(); 00058 std::string get_name(); 00064 int get_intid(); 00065 00066 private: 00067 int condid, studyid, intid; 00068 std::string name; 00069 }; 00070 } 00071 00072 #endif