aboutsummaryrefslogtreecommitdiff
path: root/week13/Exercise3/ThreadModerator.h
blob: 28722063f99a6314e567078a29d5b2a5767452cd (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
#include "User.h"
#include "Thread.h"

class ThreadModerator : virtual public User {
public:
	void RemoveMessage(Thread& thread, unsigned index);
	void RemoveByUser(Thread& thread, const User& poster);
};