cleanup
This commit is contained in:
parent
f1868ceea5
commit
dea773366e
8 changed files with 103 additions and 24 deletions
|
@ -5,5 +5,11 @@
|
|||
|
||||
class backend {
|
||||
public:
|
||||
backend() = default;
|
||||
virtual ~backend() = default;
|
||||
backend(backend const&) = delete;
|
||||
backend& operator = (backend const&) = delete;
|
||||
backend(backend&&) = delete;
|
||||
backend& operator=(backend&&) = delete;
|
||||
virtual std::unique_ptr<http_response> handle_request(http_request& req) = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue