mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
13 lines
287 B
C++
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;
|
|
};
|