2010-06-24 10:35:00 +00:00
|
|
|
#ifndef DISTRIBITEM_TEST_H_
|
|
|
|
#define DISTRIBITEM_TEST_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* libretroshare/src/serialiser: distribitem_test.h
|
|
|
|
*
|
|
|
|
* RetroShare Serialiser tests
|
|
|
|
*
|
|
|
|
* Copyright 2010 by Christopher Evi-Parker.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include "serialiser/rsdistribitems.h"
|
|
|
|
#include "serialiser/rschannelitems.h"
|
|
|
|
#include "serialiser/rsforumitems.h"
|
|
|
|
#include "serialiser/rsblogitems.h"
|
|
|
|
|
|
|
|
#include "serialiser/rstlvkeys.h"
|
|
|
|
#include "serialiser/rstlvtypes.h"
|
|
|
|
|
|
|
|
RsSerialType* init_item(RsDistribGrp&);
|
|
|
|
RsSerialType* init_item(RsDistribGrpKey&);
|
|
|
|
RsSerialType* init_item(RsDistribSignedMsg&);
|
|
|
|
RsSerialType* init_item(RsChannelMsg&);
|
|
|
|
RsSerialType* init_item(RsForumMsg&);
|
2010-07-26 22:09:33 +00:00
|
|
|
RsSerialType* init_item(RsForumReadStatus&);
|
2010-06-24 10:35:00 +00:00
|
|
|
RsSerialType* init_item(RsBlogMsg&);
|
|
|
|
|
|
|
|
bool operator==(const RsDistribGrp& , const RsDistribGrp& );
|
|
|
|
bool operator==(const RsDistribGrpKey& , const RsDistribGrpKey& );
|
|
|
|
bool operator==(const RsDistribSignedMsg& , const RsDistribSignedMsg& );
|
|
|
|
bool operator==(const RsChannelMsg& , const RsChannelMsg& );
|
|
|
|
bool operator==(const RsForumMsg& , const RsForumMsg& );
|
2010-07-26 22:09:33 +00:00
|
|
|
bool operator==(const RsForumReadStatus&, const RsForumReadStatus& );
|
2010-06-24 10:35:00 +00:00
|
|
|
bool operator==(const RsBlogMsg& , const RsBlogMsg& );
|
|
|
|
|
|
|
|
void init_item(RsTlvSecurityKey&);
|
|
|
|
void init_item(RsTlvKeySignature&);
|
|
|
|
void init_item(RsTlvBinaryData&);
|
|
|
|
void init_item(RsTlvFileItem&);
|
|
|
|
void init_item(RsTlvFileSet&);
|
|
|
|
void init_item(RsTlvHashSet&);
|
|
|
|
void init_item(RsTlvPeerIdSet&);
|
|
|
|
void init_item(RsTlvImage&);
|
|
|
|
|
|
|
|
bool operator==(const RsTlvSecurityKey&, const RsTlvSecurityKey& );
|
|
|
|
bool operator==(const RsTlvKeySignature&, const RsTlvKeySignature& );
|
|
|
|
bool operator==(const RsTlvBinaryData&, const RsTlvBinaryData&);
|
|
|
|
bool operator==(const RsTlvFileItem&, const RsTlvFileItem&);
|
|
|
|
bool operator==(const RsTlvFileSet&, const RsTlvFileSet& );
|
|
|
|
bool operator==(const RsTlvHashSet&, const RsTlvHashSet&);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* DISTRIBITEM_TEST_H_ */
|