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