SparrowBot/message.h
2015-05-21 15:26:18 +02:00

19 lines
241 B
C++

#ifndef MESSAGE_H
#define MESSAGE_H
#include <string>
#include <QString>
class Message
{
public:
QString src;
QString command;
QString target;
QString args;
Message(QString str);
~Message();
};
#endif // MESSAGE_H