study.cpp
Go to the documentation of this file.
00001 
00011 #include <rmscpp/user_studies/studies/study.h>
00012 
00013 using namespace std;
00014 using namespace rms;
00015 
00016 study::study(int studyid, string name, string description, string start, string end)
00017 {
00018   // assign the fields
00019   this->studyid = studyid;
00020   this->name = name;
00021   this->description = description;
00022   this->start = start;
00023   this->end = end;
00024 }
00025 
00026 int study::get_studyid()
00027 {
00028   return studyid;
00029 }
00030 
00031 string study::get_name()
00032 {
00033   return name;
00034 }
00035 
00036 string study::get_description()
00037 {
00038   return description;
00039 }
00040 
00041 string study::get_start()
00042 {
00043   return start;
00044 }
00045 
00046 string study::get_end()
00047 {
00048   return end;
00049 }


rmscpp
Author(s): Russell Toris
autogenerated on Sat Dec 28 2013 17:08:57