diff options
| author | Nikita Kostovsky <nikita@kostovsky.me> | 2025-11-17 16:28:45 +0100 |
|---|---|---|
| committer | Nikita Kostovsky <nikita@kostovsky.me> | 2025-11-17 16:28:45 +0100 |
| commit | 0fdae0386e2e55f489853561dc15055a168e5df1 (patch) | |
| tree | b91087c4696a3281fee528fc838b5447272432e0 /src/protocols/httpserver.h | |
| parent | 99b78ccb9cdb82d64aa3da32dd47b052d3f51732 (diff) | |
introduce Scanner
Diffstat (limited to 'src/protocols/httpserver.h')
| -rw-r--r-- | src/protocols/httpserver.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/protocols/httpserver.h b/src/protocols/httpserver.h index 600ead4..bfc1e56 100644 --- a/src/protocols/httpserver.h +++ b/src/protocols/httpserver.h @@ -29,6 +29,11 @@ public: const uint16_t port = DefaultPort); ~HttpServer() override = default; + // IProtocol +public: + bool start() override; + void stop() override; + // TODO: methods starting with GET_/POST_ will be routed automatically public: QHttpServerResponse GET_image(); |
