OK, another update. This is just prior to redoing the MainWin completely.
[quassel.git] / core / core.h
index 6b7a0ae..f5532c3 100644 (file)
@@ -53,6 +53,15 @@ class Core : public QObject {
 
   private:
     QHash<QString, Server *> servers;
+    QList<Message> backLog;
+    bool backLogEnabled;
+    QDir backLogDir;
+    QFile currentLogFile;
+    QDataStream logStream;
+    QDate currentLogFileDate;
+
+    void initBackLog();
+    void logMessage(Message);
 
 };