blob: edd6659cfabf2e089f9e13b3a5d2b48779314f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef USERINFO_H_
#define USERINFO_H_
#include <string>
class UserInfo
{
public:
int ID;
int Age;
std::string Username;
std::string Biography;
UserInfo(int id, int age, std::string username, std::string biography):
ID(id),
Age(age),
Username(username),
Biography(biography)
{ }
};
#endif /* USER_H_ */
|