mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
21 lines
252 B
C
21 lines
252 B
C
|
#ifndef RSGNP_H
|
||
|
#define RSGNP_H
|
||
|
|
||
|
#include "pqi/pqiservice.h"
|
||
|
|
||
|
|
||
|
/*!
|
||
|
* Retroshare general network protocol
|
||
|
*
|
||
|
* This deals with the receiving and sending
|
||
|
* RsGxs data
|
||
|
*
|
||
|
*/
|
||
|
class RsGnp
|
||
|
{
|
||
|
public:
|
||
|
RsGnp();
|
||
|
};
|
||
|
|
||
|
#endif // RSGNP_H
|