mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
24 lines
403 B
C
24 lines
403 B
C
|
#pragma once
|
||
|
|
||
|
// from librssimulator
|
||
|
#include "testing/SetServiceTester.h"
|
||
|
|
||
|
class GxsPeerNode;
|
||
|
|
||
|
class GxsPairServiceTester: public SetServiceTester
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
GxsPairServiceTester(const RsPeerId &peerId1, const RsPeerId &peerId2, int testMode);
|
||
|
~GxsPairServiceTester();
|
||
|
|
||
|
void createGroup(const RsPeerId &id, const std::string &name);
|
||
|
|
||
|
GxsPeerNode *getGxsPeerNode(const RsPeerId &id);
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|