aboutsummaryrefslogtreecommitdiff
path: root/zenserver/frontend/frontend.h
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-03-21 12:42:45 +0100
committerDan Engelbrecht <[email protected]>2022-03-21 12:42:45 +0100
commitd35df614722024ccdb746332eceda2b7a6cd0b80 (patch)
tree57203b27fd9fd76a62b066140a0a7cf307012eb4 /zenserver/frontend/frontend.h
parentMissing return statement in websocket.h (diff)
downloadzen-d35df614722024ccdb746332eceda2b7a6cd0b80.tar.xz
zen-d35df614722024ccdb746332eceda2b7a6cd0b80.zip
clang-format
Diffstat (limited to 'zenserver/frontend/frontend.h')
-rw-r--r--zenserver/frontend/frontend.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/zenserver/frontend/frontend.h b/zenserver/frontend/frontend.h
index bf5298169..6eac20620 100644
--- a/zenserver/frontend/frontend.h
+++ b/zenserver/frontend/frontend.h
@@ -12,14 +12,14 @@ namespace zen {
class HttpFrontendService final : public zen::HttpService
{
public:
- HttpFrontendService(std::filesystem::path Directory);
- virtual ~HttpFrontendService();
- virtual const char* BaseUri() const override;
- virtual void HandleRequest(zen::HttpServerRequest& Request) override;
+ HttpFrontendService(std::filesystem::path Directory);
+ virtual ~HttpFrontendService();
+ virtual const char* BaseUri() const override;
+ virtual void HandleRequest(zen::HttpServerRequest& Request) override;
private:
- ZipFs m_ZipFs;
- std::filesystem::path m_Directory;
+ ZipFs m_ZipFs;
+ std::filesystem::path m_Directory;
};
} // namespace zen