src/HTTPServer.h
branchv_0
changeset 4 37a86904145c
parent 3 1184f3de5533
child 8 90990c8b6aef
--- a/src/HTTPServer.h	Fri Apr 08 22:38:45 2022 +0200
+++ b/src/HTTPServer.h	Sat Apr 09 17:50:46 2022 +0200
@@ -41,6 +41,12 @@
 	public:
 		std::string name;
 		std::string value;
+
+		Header(std::string name, std::string value) : name(name), value(value) {
+		}
+
+		virtual ~Header() {
+		}
 	};
 
 	class Request {