1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/* * User.h * * Created on: Jan 25, 2012 * Author: Simon */ #ifndef USER_H_ #define USER_H_ #include <string> class User { public: int ID; std::string Username; std::string SessionID; std::string SessionKey; User(int id, std::string username): ID(id), Username(username) { } }; #endif /* USER_H_ */