mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
removed old file rssrviceserialiser.h/cc
This commit is contained in:
parent
14076de1e0
commit
24c7c38016
@ -456,7 +456,6 @@ HEADERS += rsitems/rsitem.h \
|
||||
rsitems/itempriorities.h \
|
||||
serialiser/rsbaseserial.h \
|
||||
rsitems/rsfiletransferitems.h \
|
||||
serialiser/rsserviceserialiser.h \
|
||||
rsitems/rsconfigitems.h \
|
||||
rsitems/rshistoryitems.h \
|
||||
rsitems/rsmsgitems.h \
|
||||
@ -609,7 +608,6 @@ SOURCES += plugins/pluginmanager.cc \
|
||||
|
||||
SOURCES += serialiser/rsbaseserial.cc \
|
||||
rsitems/rsfiletransferitems.cc \
|
||||
serialiser/rsserviceserialiser.cc \
|
||||
rsitems/rsconfigitems.cc \
|
||||
rsitems/rshistoryitems.cc \
|
||||
rsitems/rsmsgitems.cc \
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "pqi/p3linkmgr.h"
|
||||
#include "util/rsdebug.h"
|
||||
#include "util/rsprint.h"
|
||||
#include "serialiser/rsserviceserialiser.h"
|
||||
#include "serialiser/rsserializer.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "serialiser/rsserviceserialiser.h"
|
||||
#include "serialiser/rsserializer.h"
|
||||
#include "util/rsdebug.h"
|
||||
|
||||
#include "pqi/pqisslpersongrp.h"
|
||||
|
@ -117,7 +117,13 @@
|
||||
// addSerialType(new MyServiceSerializer()) ;
|
||||
// }
|
||||
//
|
||||
// 4 - in your service, recieve and send items by calling recvItem() and sendItem() respectively.
|
||||
// If needed, you may serialize your own items by calling:
|
||||
//
|
||||
// uint32_t size = MySerializer().size(item) ;
|
||||
// uint8_t *data = (uint8_t*)malloc(size);
|
||||
// MySerializer().serialise(item,data,size) ;
|
||||
//
|
||||
// 4 - in your service, receive and send items by calling recvItem() and sendItem() respectively.
|
||||
//
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
@ -1,29 +0,0 @@
|
||||
/*
|
||||
* libretroshare/src/serialiser: rsserviceserialiser.cc
|
||||
*
|
||||
* 3P/PQI network interface for RetroShare.
|
||||
*
|
||||
* Copyright 2013-2013 by Cyril Soler & Robert Fernie
|
||||
*
|
||||
* 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 "rsitems/rsitem.h"
|
||||
#include "rsserviceserialiser.h"
|
||||
|
||||
|
@ -1,30 +0,0 @@
|
||||
/*
|
||||
* libretroshare/src/serialiser: rsserviceserialiser.h
|
||||
*
|
||||
* 3P/PQI network interface for RetroShare.
|
||||
*
|
||||
* Copyright 2013-2013 by Cyril Soler & Robert Fernie
|
||||
*
|
||||
* 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".
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "rsserial.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user