session creation fixed
This commit is contained in:
+4
-4
@@ -10,7 +10,7 @@
|
||||
#pragma once
|
||||
class user
|
||||
{
|
||||
public:
|
||||
private:
|
||||
std::string name = "";
|
||||
char age = 0;
|
||||
uint32_t id = 0;
|
||||
@@ -25,8 +25,8 @@ public:
|
||||
{
|
||||
this->id = id;
|
||||
}
|
||||
std::string getName() { return name; }
|
||||
char getAge() { return age; }
|
||||
uint32_t getId() { return id; }
|
||||
std::string getName() const { return name; }
|
||||
char getAge() const { return age; }
|
||||
uint32_t getId() const { return id; }
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user