No new features here... (adding/testing of new files)
[quassel.git] / src / core / server.h
index 34a4514..bcc7ffd 100644 (file)
@@ -29,6 +29,7 @@
 #include <QTimer>
 
 #include "message.h"
+#include "serverinfo.h"
 
 #define DEFAULT_PORT 6667
 
@@ -159,7 +160,7 @@ class Server : public QThread {
     QHash<QString, QString> topics; // stores topics for each buffer
     VarMap serverSupports;  // stores results from RPL_ISUPPORT
 
-    void handleServerMsg(QString rawMsg);
+    void handleServerMsg(QByteArray rawMsg);
     void handleUserInput(QString buffer, QString usrMsg);
 
     // CTCP Stuff
@@ -185,6 +186,9 @@ class Server : public QThread {
       public:
         UnknownCmdError(QString cmd, QString prefix, QStringList params);
     };
+    
+    // stuff needed for new separation of server information
+    ServerInfo *serverinfo;
 };
 
 #endif