OidentdConfigGen: remove qDebug()s
[quassel.git] / src / core / oidentdconfiggenerator.h
index bc2e25a..9e05162 100644 (file)
@@ -30,7 +30,6 @@
 
 #include "quassel.h"
 #include "coreidentity.h"
-#include <QDebug>
 
 class OidentdConfigGenerator : public QObject
 {
@@ -54,13 +53,15 @@ private:
   QDateTime _lastSync;
   QFile *_configFile;
   QByteArray _config;
+  // Mutex isn't strictly necessary at the moment, since with the current invocation in Core only one instance at a time exists
   QMutex _mutex;
 
   QDir configDir;
   QString configFileName;
   QString configPath;
   QString configTag;
-  QRegExp quasselStanza;
+  QRegExp quasselStanzaRx;
+  QString quasselStanzaTemplate;
 };
 
 #endif // OIDENTDCONFIGGENERATOR_H