mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
367 B
C++
18 lines
367 B
C++
#ifndef __JSON_INTERFACE_JSON_LOGOUT_
|
|
#define __JSON_INTERFACE_JSON_LOGOUT_
|
|
|
|
#include "JsonRequestHandler.h"
|
|
|
|
class JsonLogout : public JsonRequestHandler
|
|
{
|
|
public:
|
|
JsonLogout(Poco::Net::IPAddress ip) : mClientIP(ip) {}
|
|
Poco::JSON::Object* handle(Poco::Dynamic::Var params);
|
|
|
|
protected:
|
|
Poco::Net::IPAddress mClientIP;
|
|
|
|
|
|
};
|
|
|
|
#endif // __JSON_INTERFACE_JSON_LOGOUT_
|