// this file is generated by program automatically,don't modify it! /** * * NotFound.cc * An Tao * * Copyright 2018, An Tao. All rights reserved. * https://github.com/an-tao/drogon * Use of this source code is governed by a MIT license * that can be found in the License file. * * Drogon * */ #include #include #include #include #include #include using namespace drogon; std::string NotFound::genText(const HttpViewData &NotFound_view_data) { std::stringstream NotFound_tmp_stream; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "404 Not Found\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "

404 Not Found

\n"; NotFound_tmp_stream << "
drogon/"; NotFound_tmp_stream << NotFound_view_data.get("version"); NotFound_tmp_stream << "
\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "\n"; NotFound_tmp_stream << "\n"; return NotFound_tmp_stream.str(); }