1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-01-13 19:56:40 +00:00
kamokan/src/response.hpp

22 lines
319 B
C++
Raw Normal View History

2017-04-04 19:58:40 +00:00
#pragma once
#include <string>
#include <iostream>
namespace tawashi {
class Response {
public:
virtual ~Response() noexcept;
void send();
protected:
Response (std::string&& parType);
private:
virtual void on_send (std::ostream& parStream) = 0;
std::string m_content_type;
};
} //namespace tawashi