aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/httpnull.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenhttp/httpnull.h')
-rw-r--r--src/zenhttp/httpnull.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/zenhttp/httpnull.h b/src/zenhttp/httpnull.h
deleted file mode 100644
index 965e729f7..000000000
--- a/src/zenhttp/httpnull.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright Epic Games, Inc. All Rights Reserved.
-
-#pragma once
-
-#include <zencore/thread.h>
-#include <zenhttp/httpserver.h>
-
-namespace zen {
-
-/**
- * @brief Null implementation of "http" server. Does nothing
- */
-
-class HttpNullServer : public HttpServer
-{
-public:
- HttpNullServer();
- ~HttpNullServer();
-
- virtual void RegisterService(HttpService& Service) override;
- virtual int Initialize(int BasePort) override;
- virtual void Run(bool IsInteractiveSession) override;
- virtual void RequestExit() override;
- virtual void Close() override;
-
-private:
- Event m_ShutdownEvent;
-};
-
-} // namespace zen