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

14 lines
224 B
C++
Raw Normal View History

2017-04-06 20:27:38 +00:00
#pragma once
#include "response.hpp"
namespace tawashi {
class IndexResponse : public Response {
public:
IndexResponse();
private:
virtual void on_send (std::ostream& parStream) override;
};
} //namespace tawashi