diff options
Diffstat (limited to 'UI/Qt/MessageSnippet.h')
-rw-r--r-- | UI/Qt/MessageSnippet.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/UI/Qt/MessageSnippet.h b/UI/Qt/MessageSnippet.h deleted file mode 100644 index b24c4f9..0000000 --- a/UI/Qt/MessageSnippet.h +++ /dev/null @@ -1,25 +0,0 @@ -#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_; - }; -} |