experiment.h
Go to the documentation of this file.
00001 
00011 #ifndef EXPERIMENT_H_
00012 #define EXPERIMENT_H_
00013 
00014 #include <string>
00015 
00020 namespace rms
00021 {
00028 class experiment
00029 {
00030 public:
00041   experiment(int expid, int userid, int condid, int envid, std::string start, std::string end);
00042 
00048   int get_expid();
00054   int get_userid();
00060   int get_condid();
00066   int get_envid();
00072   std::string get_start();
00078   std::string get_end();
00079 
00080 private:
00081   int expid, userid, condid, envid; 
00082   std::string start, end; 
00083 };
00084 }
00085 
00086 #endif


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