2013-03-16 12:45:18 -05:00
|
|
|
#ifndef USERINFO_H_
|
|
|
|
#define USERINFO_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class UserInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int ID;
|
|
|
|
int Age;
|
|
|
|
std::string Username;
|
|
|
|
std::string Biography;
|
2013-03-21 16:49:06 -05:00
|
|
|
std::string Location;
|
|
|
|
UserInfo(int id, int age, std::string username, std::string biography, std::string location):
|
2013-03-16 12:45:18 -05:00
|
|
|
ID(id),
|
|
|
|
Age(age),
|
|
|
|
Username(username),
|
2013-03-21 16:49:06 -05:00
|
|
|
Biography(biography),
|
|
|
|
Location(location)
|
2013-03-16 12:45:18 -05:00
|
|
|
{ }
|
2013-03-21 16:49:06 -05:00
|
|
|
UserInfo() {}
|
2013-03-16 12:45:18 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* USER_H_ */
|