/* cgi example written by Amlal El Mahrouss. licensed under the Boost Software License */ #include static ocl::basic_chunk_string text_sample = R"( Error | OCL

Uh Oh!

No index file was found in this directory.

Name

Refresh

OCL's Common Gateway Server.
)"; /* finally test it */ /* @brief this stub loads a 'index.html' or returns an error message if not found. */ int main(int argc, char** argv) { ocl::cgi::basic_writer<> writer; writer << text_sample; return 0; }