mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
35 lines
699 B
C
35 lines
699 B
C
|
#pragma once
|
||
|
|
||
|
// from librssimulator
|
||
|
#include "testing/IsolatedServiceTester.h"
|
||
|
|
||
|
class RsGxsIdExchange;
|
||
|
class RsGxsCircleExchange;
|
||
|
class GxsTestService;
|
||
|
class RsGeneralDataService;
|
||
|
class RsGxsNetService;
|
||
|
|
||
|
class GxsIsolatedServiceTester: public IsolatedServiceTester
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
GxsIsolatedServiceTester(const RsPeerId &ownId, const RsPeerId &friendId, std::list<RsPeerId> peers, int testMode);
|
||
|
~GxsIsolatedServiceTester();
|
||
|
|
||
|
uint32_t mTestMode;
|
||
|
std::string mGxsDir;
|
||
|
|
||
|
// Id and Circle Interfaces. (NULL for now).
|
||
|
RsGxsIdExchange *mGxsIdService;
|
||
|
RsGxsCircleExchange *mGxsCircles;
|
||
|
|
||
|
GxsTestService *mTestService;
|
||
|
RsGeneralDataService* mTestDs;
|
||
|
RsGxsNetService* mTestNs;
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|