urbackup_backend/Interface/WebSocket.h

13 lines
287 B
C++

#pragma once
#include "Types.h"
#include "Object.h"
#include "Pipe.h"
class IWebSocket : public IObject
{
public:
virtual void Execute(str_map& GET, THREAD_ID tid, str_map& PARAMS, IPipe* pipe, const std::string& endpoint_name) = 0;
virtual std::string getName() = 0;
};