mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2025-01-13 19:56:40 +00:00
14 lines
224 B
C++
14 lines
224 B
C++
|
#pragma once
|
||
|
|
||
|
#include "response.hpp"
|
||
|
|
||
|
namespace tawashi {
|
||
|
class IndexResponse : public Response {
|
||
|
public:
|
||
|
IndexResponse();
|
||
|
|
||
|
private:
|
||
|
virtual void on_send (std::ostream& parStream) override;
|
||
|
};
|
||
|
} //namespace tawashi
|