Added status service: p3status

Added status service to core: p3face-startup


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@524 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
vinnyx 2008-04-26 09:39:02 +00:00
parent 02c6d70e30
commit 26d2def720
5 changed files with 162 additions and 5 deletions

View file

@ -49,6 +49,7 @@
#include "services/p3ranking.h"
#include "services/p3photoservice.h"
#include "services/p3forums.h"
#include "services/p3status.h"
#include <list>
#include <string>
@ -738,11 +739,13 @@ int RsServer::StartupRetroShare(RsInit *config)
rsPhoto = new p3Photo(photoService);
rsRanks = new p3Rank(mRanking);
rsForums = new p3Forums();
rsStatus = new p3Status();
#else
rsGameLauncher = NULL;
rsPhoto = NULL;
rsRanks = NULL;
rsForums = NULL;
rsStatus = NULL;
#endif