Download this file
1 2 3 4 5 6 7 8 9
#ifndef CPPCMS_UTIL_H #define CPPCMS_UTIL_H #include <string> namespace cppcms { std::string escape(std::string const &s); std::string urlencode(std::string const &s); } #endif