diff options
Diffstat (limited to 'src/lib/util/server_http.hpp')
-rw-r--r-- | src/lib/util/server_http.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/server_http.hpp b/src/lib/util/server_http.hpp index 13c6aec45bf..5218a5da734 100644 --- a/src/lib/util/server_http.hpp +++ b/src/lib/util/server_http.hpp @@ -49,10 +49,10 @@ namespace webpp { std::string remote_endpoint_address; unsigned short remote_endpoint_port; - + virtual ~Request() {} }; - + struct Response { virtual Response& status(int number) = 0; virtual void type(std::string str) = 0; @@ -61,7 +61,7 @@ namespace webpp { virtual ~Response() {} }; - + class http_server; } #endif /* MAME_LIB_UTIL_SERVER_HTTP_HPP */ |