summaryrefslogtreecommitdiff
path: root/src/HttpResponse.h
blob: 33148da3390e4c4aa0ba0209b5cdaa1c702d23ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <sstream>
#include <string>

enum class ResponseCode {
	OK = 200
};

class HttpResponse {
public:
	HttpResponse(ResponseCode);

	void add_header(std::string header);
	std::string to_string() const;
private:
	std::stringstream m_string_stream;
};