mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-15 04:22:27 -04:00

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8047 b45a01b8-16f6-495d-af2f-9b41ad6348cc
20 lines
388 B
C++
20 lines
388 B
C++
#pragma once
|
|
|
|
#include "ApiTypes.h"
|
|
#include "ResourceRouter.h"
|
|
|
|
class RsServiceControl;
|
|
|
|
namespace resource_api
|
|
{
|
|
|
|
class ServiceControlHandler: public ResourceRouter
|
|
{
|
|
public:
|
|
ServiceControlHandler(RsServiceControl* control);
|
|
|
|
private:
|
|
RsServiceControl* mRsServiceControl;
|
|
void handleWildcard(Request& req, Response& resp);
|
|
};
|
|
} // namespace resource_api
|