blob: 41bb5c6fe7409ee894504177c100eb68f710ff2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include "User.h"
class Moderator : public User {
protected:
char* signature;
void free();
void copyFrom(const Moderator& other);
public:
Moderator();
~Moderator();
Moderator(const Moderator& other);
Moderator& operator=(const Moderator& other);
Moderator(Moderator&& other);
Moderator& operator=(Moderator&& other);
const char* GetSignature();
};
|