This commit is contained in:
Max-Wilhelm Bruker 2009-10-30 13:18:25 +01:00
parent 1c2aa15b22
commit 6923c98dc2
12 changed files with 107 additions and 45 deletions

View file

@ -634,5 +634,16 @@ public:
protected:
void extractParameters();
};
class Event_Welcome : public GenericEvent {
Q_OBJECT
private:
QString message;
public:
Event_Welcome(const QString &_message = QString());
QString getMessage() const { return message; }
static ProtocolItem *newItem() { return new Event_Welcome; }
protected:
void extractParameters();
};
#endif