mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-18 05:44:14 -05:00
![chrisparker126](/assets/img/avatar_default.png)
- need to fix to allow saving sync config git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs_finale@6936 b45a01b8-16f6-495d-af2f-9b41ad6348cc
26 lines
783 B
C
26 lines
783 B
C
/*
|
|
* rsgxsupdateitem_test.h
|
|
*
|
|
* Created on: 9 Dec 2013
|
|
* Author: crispy
|
|
*/
|
|
|
|
#ifndef RSGXSUPDATEITEM_TEST_H_
|
|
#define RSGXSUPDATEITEM_TEST_H_
|
|
|
|
#include "serialiser/rsgxsupdateitems.h"
|
|
#include "support.h"
|
|
|
|
|
|
RsSerialType* init_item(RsGxsGrpUpdateItem& i);
|
|
RsSerialType* init_item(RsGxsMsgUpdateItem& i);
|
|
RsSerialType* init_item(RsGxsServerGrpUpdateItem& i);
|
|
RsSerialType* init_item(RsGxsServerMsgUpdateItem& i);
|
|
|
|
bool operator==(const RsGxsGrpUpdateItem& l, const RsGxsGrpUpdateItem& r);
|
|
bool operator==(const RsGxsMsgUpdateItem& l, const RsGxsMsgUpdateItem& r);
|
|
bool operator==(const RsGxsServerGrpUpdateItem& l, const RsGxsServerGrpUpdateItem& r);
|
|
bool operator==(const RsGxsServerMsgUpdateItem& l, const RsGxsServerMsgUpdateItem& r);
|
|
|
|
#endif /* RSGXSUPDATEITEM_TEST_H_ */
|