mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-14 00:55:46 -04:00
removed circular dependencies between includes
git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.6-IdCleaning@7171 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
918dc150f4
commit
8b6ce73ceb
3 changed files with 13 additions and 6 deletions
|
@ -32,6 +32,11 @@
|
|||
#include <set>
|
||||
|
||||
#include "retroshare/rstypes.h"
|
||||
|
||||
//typedef std::string RsGxsCircleId;
|
||||
//typedef RsPgpId RsPgpId;
|
||||
//typedef std::string RsCircleInternalId;
|
||||
|
||||
#include "retroshare/rstokenservice.h"
|
||||
#include "retroshare/rsgxsifacehelper.h"
|
||||
|
||||
|
@ -42,7 +47,6 @@
|
|||
class RsGxsCircles;
|
||||
extern RsGxsCircles *rsGxsCircles;
|
||||
|
||||
|
||||
typedef RsPgpId RsPgpId;
|
||||
typedef std::string RsCircleInternalId;
|
||||
|
||||
|
|
|
@ -12,13 +12,13 @@
|
|||
#include <vector>
|
||||
#include <string>
|
||||
#include <inttypes.h>
|
||||
#include <retroshare/rstypes.h>
|
||||
#include <retroshare/rsids.h>
|
||||
|
||||
typedef GXSGroupId RsGxsGroupId;
|
||||
#include <retroshare/rstypes.h>
|
||||
|
||||
typedef GXSGroupId RsGxsGroupId;
|
||||
typedef Sha1CheckSum RsGxsMessageId;
|
||||
typedef GXSId RsGxsId;
|
||||
typedef GXSCircleId RsGxsCircleId;
|
||||
typedef GXSId RsGxsId;
|
||||
typedef GXSCircleId RsGxsCircleId;
|
||||
|
||||
typedef std::map<RsGxsGroupId, std::vector<RsGxsMessageId> > GxsMsgIdResult;
|
||||
typedef std::pair<RsGxsGroupId, RsGxsMessageId> RsGxsGrpMsgIdPair;
|
||||
|
|
|
@ -2,8 +2,11 @@
|
|||
#define RSGXSSERVICE_H
|
||||
|
||||
|
||||
#include "retroshare/rsgxsifacetypes.h"
|
||||
#include "retroshare/rstokenservice.h"
|
||||
|
||||
class RsMsgMetaData ;
|
||||
|
||||
typedef std::map<RsGxsGroupId, std::vector<RsMsgMetaData> > GxsMsgMetaMap;
|
||||
typedef std::map<RsGxsGrpMsgIdPair, std::vector<RsMsgMetaData> > GxsMsgRelatedMetaMap;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue