mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
081b59ee1a
Updated dataservice tests and fixed subsequent bugs added bug fixes for RetroDb and fixed postability issue (removed map.at use) Added: Data access module used as token service gxs service backend (RsGenExchange) RsPhotoV2 which is a modification to deal with different interface provided by RsGenExchange also added subsequent p3photoserviceV2 NxsTestHub to help with testing nxsnetservice (RsGxsNetService is not yet working) git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-new_cache_system@5274 b45a01b8-16f6-495d-af2f-9b41ad6348cc
28 lines
469 B
C++
28 lines
469 B
C++
#ifndef RSGXSITEM_H
|
|
#define RSGXSITEM_H
|
|
|
|
#include "serialiser/rsserviceids.h"
|
|
#include "serialiser/rsserial.h"
|
|
#include "serialiser/rstlvbase.h"
|
|
#include "serialiser/rstlvtypes.h"
|
|
#include "serialiser/rstlvkeys.h"
|
|
|
|
|
|
class RsGxsGrpItem : RsItem
|
|
{
|
|
|
|
RsGxsItem() : RsItem(0) { return; }
|
|
virtual ~RsGxsItem();
|
|
|
|
};
|
|
|
|
class RsGxsMsgItem : RsItem
|
|
{
|
|
|
|
RsGxsItem() : RsItem(0) { return; }
|
|
virtual ~RsGxsItem();
|
|
|
|
};
|
|
|
|
#endif // RSGXSITEM_H
|