mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-12-21 03:15:20 -05:00
updated msgServices to deal with loading and saving into new type
may still not load old type. will look at portability fix git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3516 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
a51bf3da67
commit
412cf5f928
2 changed files with 44 additions and 106 deletions
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
class p3ConnectMgr;
|
||||
|
||||
class p3MsgService: public p3Service, public pqiConfig, public pqiMonitor
|
||||
class p3MsgService: public p3Service, public p3Config, public pqiMonitor
|
||||
{
|
||||
public:
|
||||
p3MsgService(p3ConnectMgr *cm);
|
||||
|
|
@ -84,10 +84,12 @@ void loadWelcomeMsg(); /* startup message */
|
|||
int tick();
|
||||
int status();
|
||||
|
||||
/*** Overloaded from pqiConfig ****/
|
||||
virtual bool loadConfiguration(std::string &loadHash);
|
||||
virtual bool saveConfiguration();
|
||||
/*** Overloaded from pqiConfig ****/
|
||||
/*** Overloaded from p3Config ****/
|
||||
virtual RsSerialiser *setupSerialiser();
|
||||
virtual std::list<RsItem*> saveList(bool& cleanup);
|
||||
virtual bool loadList(std::list<RsItem*> load);
|
||||
virtual void saveDone();
|
||||
/*** Overloaded from p3Config ****/
|
||||
|
||||
/*** Overloaded from pqiMonitor ***/
|
||||
virtual void statusChange(const std::list<pqipeer> &plist);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue