diff options
Diffstat (limited to 'include/chatlogpiece.h')
| -rw-r--r-- | include/chatlogpiece.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/include/chatlogpiece.h b/include/chatlogpiece.h index 0232666d..34c5926b 100644 --- a/include/chatlogpiece.h +++ b/include/chatlogpiece.h @@ -1,23 +1,22 @@ #ifndef CHATLOGPIECE_H #define CHATLOGPIECE_H -#include <QDateTime> #include <QString> +#include <QDateTime> -class chatlogpiece { +class chatlogpiece +{ public: chatlogpiece(); - chatlogpiece(QString p_name, QString p_showname, QString p_message, - bool p_song, int color); - chatlogpiece(QString p_name, QString p_showname, QString p_message, - bool p_song, int color, QDateTime p_datetime); + chatlogpiece(QString p_name, QString p_showname, QString p_message, bool p_song); + chatlogpiece(QString p_name, QString p_showname, QString p_message, bool p_song, QDateTime p_datetime); + QString get_name(); QString get_showname(); QString get_message(); bool get_is_song(); QDateTime get_datetime(); QString get_datetime_as_string(); - int get_chat_color(); QString get_full(); @@ -27,7 +26,6 @@ private: QString message; QDateTime datetime; bool is_song; - int color; }; #endif // CHATLOGPIECE_H |
