22 lines
312 B
C++
22 lines
312 B
C++
#ifndef MESSAGE_H
|
|
#define MESSAGE_H
|
|
|
|
#include <string>
|
|
#include <QString>
|
|
#include <vector>
|
|
#include "user.h"
|
|
|
|
class Message
|
|
{
|
|
public:
|
|
User* src;
|
|
QString command;
|
|
QString target;
|
|
QString target2;
|
|
QString args;
|
|
Message(QString str, UserList users);
|
|
~Message();
|
|
};
|
|
|
|
#endif // MESSAGE_H
|