added initialised qblog interface

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@544 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2008-05-10 20:00:02 +00:00
parent d16d5d4ef5
commit cb736a2d5b

View File

@ -50,6 +50,7 @@
#include "services/p3photoservice.h" #include "services/p3photoservice.h"
#include "services/p3forums.h" #include "services/p3forums.h"
#include "services/p3status.h" #include "services/p3status.h"
#include "services/p3Qblog.h"
#include <list> #include <list>
#include <string> #include <string>
@ -740,12 +741,15 @@ int RsServer::StartupRetroShare(RsInit *config)
rsRanks = new p3Rank(mRanking); rsRanks = new p3Rank(mRanking);
rsForums = new p3Forums(); rsForums = new p3Forums();
rsStatus = new p3Status(); rsStatus = new p3Status();
rsQblog = new p3Qblog();
#else #else
rsGameLauncher = NULL; rsGameLauncher = NULL;
rsPhoto = NULL; rsPhoto = NULL;
rsRanks = NULL; rsRanks = NULL;
rsForums = NULL; rsForums = NULL;
rsStatus = NULL; rsStatus = NULL;
rsQblog = NULL;
#endif #endif