diff options
Diffstat (limited to 'UI/Qt/MessageSnippet.h')
-rw-r--r-- | UI/Qt/MessageSnippet.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/UI/Qt/MessageSnippet.h b/UI/Qt/MessageSnippet.h new file mode 100644 index 0000000..b24c4f9 --- /dev/null +++ b/UI/Qt/MessageSnippet.h @@ -0,0 +1,25 @@ +#pragma once + +#include <QString> + +#include "ChatSnippet.h" + +class QDateTime; + +namespace Swift { + class MessageSnippet : public ChatSnippet { + public: + MessageSnippet(const QString& message, const QString& sender, const QDateTime& time, const QString& iconURI, bool isIncoming, bool appendToPrevious); + + const QString& getContent() const { + return content_; + } + + QString getContinuationElementID() const { + return "insert"; + }; + + private: + QString content_; + }; +} |