mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-16 13:02:27 -04:00
added missing services in RsPluginInterface class
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6946 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d26d6fa355
commit
d839301b7c
2 changed files with 32 additions and 14 deletions
|
@ -26,6 +26,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <time.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
@ -37,6 +38,10 @@ class RsPluginHandler ;
|
|||
extern RsPluginHandler *rsPlugins ;
|
||||
|
||||
class p3Service ;
|
||||
class RsTurtle ;
|
||||
class RsDht ;
|
||||
class RsDisc ;
|
||||
class RsMsgs ;
|
||||
class p3LinkMgr ;
|
||||
class MainPage ;
|
||||
class QIcon ;
|
||||
|
@ -82,10 +87,16 @@ class RsPlugInInterfaces {
|
|||
|
||||
public:
|
||||
|
||||
RsPlugInInterfaces() { mPeers = NULL; mFiles = NULL; }
|
||||
RsPeers* mPeers;
|
||||
RsFiles* mFiles;
|
||||
|
||||
RsPlugInInterfaces()
|
||||
{
|
||||
memset(this,0,sizeof(RsPlugInInterfaces)) ; // zero all pointers.
|
||||
}
|
||||
RsPeers *mPeers;
|
||||
RsFiles *mFiles;
|
||||
RsMsgs *mMsgs;
|
||||
RsTurtle *mTurtle;
|
||||
RsDisc *mDisc;
|
||||
RsDht *mDht;
|
||||
};
|
||||
|
||||
class RsPlugin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue