SparrowBot/app/punishermodule.h
2016-06-20 11:15:43 +02:00

19 lines
311 B
C++

#ifndef PUNISHERMODULE_H
#define PUNISHERMODULE_H
#include "module.h"
#include <vector>
class PunisherModule : public Module
{
std::vector<QString> forbidden_words;
public:
PunisherModule();
virtual bool messageHandler(Message msg);
virtual QString getName();
};
#endif // PUNISHERMODULE_H