blob: 2df00159fca3010b386e77db52013ce1a0cfddef (
plain)
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
|
#ifndef USERINFO_H_
#define USERINFO_H_
#include <string>
class UserInfo
{
public:
int ID;
int Age;
std::string Username;
std::string Biography;
std::string Location;
UserInfo(int id, int age, std::string username, std::string biography, std::string location):
ID(id),
Age(age),
Username(username),
Biography(biography),
Location(location)
{ }
UserInfo() {}
};
#endif /* USER_H_ */
|