diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-31 19:41:58 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-11-01 14:21:33 +0900 |
commit | c842e8803924f477532dfcf0f37710e63d86d669 (patch) | |
tree | af11f0e8dbab7ab204a9d437fc30ed259fd76833 /logmessage.cpp | |
parent | 9a6a06a4ac4cb52de37306dd8c9dcea6e00e6531 (diff) | |
download | libquotient-c842e8803924f477532dfcf0f37710e63d86d669.tar.gz libquotient-c842e8803924f477532dfcf0f37710e63d86d669.zip |
Removed unused code
These parts are either deprecated or just unlikely to be reused in the current form. Breaks Quaternion master as of now (it #includes logmessage.h).
Diffstat (limited to 'logmessage.cpp')
-rw-r--r-- | logmessage.cpp | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/logmessage.cpp b/logmessage.cpp deleted file mode 100644 index 8b385c25..00000000 --- a/logmessage.cpp +++ /dev/null @@ -1,60 +0,0 @@ -/****************************************************************************** - * Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include "logmessage.h" - -using namespace QMatrixClient; - -class LogMessage::Private -{ - public: - Private() {} - - MessageType type; - QString message; - QString author; -}; - -LogMessage::LogMessage(LogMessage::MessageType type, QString message, QString author) - : d(new Private) -{ - d->type = type; - d->message = message; - d->author = author; -} - -LogMessage::~LogMessage() -{ - delete d; -} - -LogMessage::MessageType LogMessage::type() const -{ - return d->type; -} - -QString LogMessage::message() const -{ - return d->message; -} - -QString LogMessage::author() const -{ - return d->author; -} - |