mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
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
|