blob: 2945ae703ea35f50fd79b2ce33b4358054a458f2 (
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 {
void free();
void copyFrom(const Moderator& other);
protected:
char* signature;
public:
Moderator();
virtual ~Moderator();
Moderator(const Moderator& other);
Moderator& operator=(const Moderator& other);
Moderator(Moderator&& other);
Moderator& operator=(Moderator&& other);
const char* GetSignature();
};
|