1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-08-11 13:09:46 +00:00

Step up work on responses.

This commit is contained in:
King_DuckZ 2017-04-06 21:27:38 +01:00
parent cc20a8ccfb
commit 98d98fc4ba
8 changed files with 77 additions and 32 deletions

View file

@ -2,12 +2,17 @@
#include "response.hpp"
namespace redis {
class IncRedis;
} //namespace redis
namespace tawashi {
class SubmitFormResponse : public Response {
public:
SubmitFormResponse();
explicit SubmitFormResponse (redis::IncRedis& parRedis);
private:
virtual void on_send (std::ostream& parStream) override;
redis::IncRedis& m_redis;
};
} //namespace tawashi