mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-03 06:35:08 -04:00
turtle dev. Worked on serialisation, mainly, and connexion to gui.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1076 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
decb7442bc
commit
29bd4795fd
8 changed files with 364 additions and 26 deletions
|
@ -36,6 +36,10 @@
|
|||
*/
|
||||
|
||||
RsFiles *rsFiles = NULL;
|
||||
#ifdef TURTLE_HOPPING
|
||||
#include "rsiface/rsturtle.h"
|
||||
RsTurtle *rsTurtle = NULL ;
|
||||
#endif
|
||||
|
||||
#include "pqi/pqipersongrp.h"
|
||||
#include "pqi/pqisslpersongrp.h"
|
||||
|
@ -60,6 +64,10 @@ RsFiles *rsFiles = NULL;
|
|||
#include "services/p3status.h"
|
||||
#include "services/p3Qblog.h"
|
||||
|
||||
#ifdef TURTLE_HOPPING
|
||||
#include "services/p3turtle.h"
|
||||
#endif
|
||||
|
||||
#include <list>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
|
@ -642,6 +650,11 @@ int RsServer::StartupRetroShare()
|
|||
msgSrv = new p3MsgService(mConnMgr);
|
||||
chatSrv = new p3ChatService(mConnMgr);
|
||||
|
||||
#ifdef TURTLE_HOPPING
|
||||
p3turtle *tr = new p3turtle(mConnMgr) ;
|
||||
rsTurtle = tr ;
|
||||
pqih -> addService(tr);
|
||||
#endif
|
||||
pqih -> addService(ad);
|
||||
pqih -> addService(msgSrv);
|
||||
pqih -> addService(chatSrv);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue