mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2025-01-13 19:56:40 +00:00
22 lines
319 B
C++
22 lines
319 B
C++
|
#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
|