2007-11-14 22:18:48 -05:00
|
|
|
/*
|
2008-01-25 01:36:40 -05:00
|
|
|
* libretroshare/src/pqi: pqiloopback.h
|
2007-11-14 22:18:48 -05:00
|
|
|
*
|
|
|
|
* 3P/PQI network interface for RetroShare.
|
|
|
|
*
|
2008-01-25 01:36:40 -05:00
|
|
|
* Copyright 2004-2008 by Robert Fernie.
|
2007-11-14 22:18:48 -05:00
|
|
|
*
|
|
|
|
* 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MRK_PQI_LOOPBACK_HEADER
|
|
|
|
#define MRK_PQI_LOOPBACK_HEADER
|
|
|
|
|
2016-08-25 05:33:11 -04:00
|
|
|
#include <list> // for list
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2016-08-25 05:33:11 -04:00
|
|
|
#include "pqi/pqi_base.h" // for NetInterface (ptr only), PQInterface
|
|
|
|
#include "retroshare/rstypes.h" // for RsPeerId
|
|
|
|
|
|
|
|
class RsItem;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
class pqiloopback: public PQInterface
|
|
|
|
{
|
|
|
|
public:
|
2014-03-17 16:56:06 -04:00
|
|
|
pqiloopback(const RsPeerId& id);
|
2007-11-14 22:18:48 -05:00
|
|
|
virtual ~pqiloopback();
|
|
|
|
|
|
|
|
// search Interface.
|
2007-12-11 20:29:14 -05:00
|
|
|
virtual int SendItem(RsItem *item);
|
|
|
|
virtual RsItem *GetItem();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
// PQI interface.
|
|
|
|
virtual int tick();
|
|
|
|
virtual int status();
|
|
|
|
|
2016-08-25 05:33:11 -04:00
|
|
|
private:
|
2007-12-11 20:29:14 -05:00
|
|
|
std::list<RsItem *> objs;
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //MRK_PQI_LOOPBACK_HEADER
|