mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-19 22:40:36 -04:00
gxs back end now compilable, need to test
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5346 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d5520a1cd8
commit
17da89938f
15 changed files with 71 additions and 91 deletions
|
@ -13,10 +13,10 @@
|
|||
* enumerating all possible changes
|
||||
* at the interface
|
||||
*/
|
||||
class RsGxsChange
|
||||
class RsGxsNotify
|
||||
{
|
||||
public:
|
||||
RsGxsChange(){ return; }
|
||||
RsGxsNotify(){ return; }
|
||||
|
||||
};
|
||||
|
||||
|
@ -24,7 +24,7 @@ public:
|
|||
* Relevant to group changes
|
||||
* TODO: extent to indicate whether a meta change or actual data
|
||||
*/
|
||||
class RsGxsGroupChange : RsGxsChange
|
||||
class RsGxsGroupChange : public RsGxsNotify
|
||||
{
|
||||
public:
|
||||
std::list<RsGxsGroupId> grpIdList;
|
||||
|
@ -34,7 +34,7 @@ public:
|
|||
* Relevant to message changes
|
||||
* TODO: extent to indicate whether a meta change or actual data
|
||||
*/
|
||||
class RsGxsMsgChange : RsGxsChange
|
||||
class RsGxsMsgChange : public RsGxsNotify
|
||||
{
|
||||
public:
|
||||
std::map<RsGxsGroupId, std::vector<RsGxsMessageId> > msgChangeMap;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue