00001 00013 #ifndef PARTICIPANTS_H 00014 #define PARTICIPANTS_H 00015 00016 00017 #include "bdmbase.h" 00018 #include "../base/user_info.h" 00019 00020 namespace bdm { 00027 class Participant : public root { 00028 protected: 00030 string name; 00031 public: 00033 Participant(){}; 00035 void set_name(const string &name0){name=name0;} 00036 }; 00037 00038 00039 }; //namespace 00040 00041 #endif // PARTICIPANTS_H