basic sending messages

This commit is contained in:
Blue 2019-04-10 23:53:42 +03:00
parent d3f537856f
commit 5575cff1f5
14 changed files with 103 additions and 3 deletions

View file

@ -3,6 +3,7 @@
#include <QString>
#include <deque>
#include <QDateTime>
namespace Shared {
@ -51,6 +52,18 @@ static const std::deque<QString> availabilityNames = {"Online", "Away", "Absent"
static const std::deque<QString> subscriptionStateThemeIcons = {"edit-none", "arrow-down-double", "arrow-up-double", "dialog-ok", "question"};
class Message {
public:
Message();
private:
QString jFrom;
QString rFrom;
QString jTo;
QString rTo;
QDateTime time;
};
};
#endif // GLOBAL_H