mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
23 lines
374 B
C
23 lines
374 B
C
|
/*
|
||
|
* NxsGrpSyncDelayed.h
|
||
|
*
|
||
|
* Created on: 19 May 2014
|
||
|
* Author: crispy
|
||
|
*/
|
||
|
|
||
|
#ifndef NXSGRPSYNCDELAYED_H_
|
||
|
#define NXSGRPSYNCDELAYED_H_
|
||
|
|
||
|
#include "nxsgrpsync_test.h"
|
||
|
|
||
|
namespace rs_nxs_test {
|
||
|
|
||
|
class NxsGrpSyncDelayed : public NxsGrpSync {
|
||
|
public:
|
||
|
NxsGrpSyncDelayed();
|
||
|
virtual ~NxsGrpSyncDelayed();
|
||
|
};
|
||
|
|
||
|
} /* namespace rs_nxs_test */
|
||
|
#endif /* NXSGRPSYNCDELAYED_H_ */
|