aboutsummaryrefslogtreecommitdiff
path: root/lib/network/http.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/network/http.h')
-rw-r--r--lib/network/http.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/network/http.h b/lib/network/http.h
deleted file mode 100644
index fa2a4fba..00000000
--- a/lib/network/http.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef __http_h
-#define __http_h
-
-#include <lib/network/httpd.h>
-#include <lib/network/http_file.h>
-#include <lib/network/http_dyn.h>
-
-class eHTTPDynPathResolver;
-class eHTTPFilePathResolver;
-
-typedef ePtr<eHTTPDynPathResolver> eHTTPDynPathResolverPtr;
-typedef ePtr<eHTTPFilePathResolver> eHTTPFilePathResolverPtr;
-
-class eHTTPServer
-{
- eHTTPD m_httpd;
- static eHTTPServer *m_instance;
- eHTTPDynPathResolverPtr m_dyn;
- eHTTPFilePathResolverPtr m_file;
-public:
- RESULT getDynResolver(eHTTPDynPathResolverPtr &ptr);
- RESULT getFileResolver(eHTTPFilePathResolverPtr &ptr);
-
- eHTTPServer();
- static eHTTPServer *getInstance() { return m_instance; }
-};
-
-#endif