#include "submit_form_response.hpp" namespace tawashi { SubmitFormResponse::SubmitFormResponse() : Response("text/html") { } void SubmitFormResponse::on_send (std::ostream& parStream) { parStream << R"(


)"; } } //namespace tawashi