1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-08-03 12:50:02 +00:00

Rename CGIEnv to cgi::Env

This commit is contained in:
King_DuckZ 2017-04-06 23:02:17 +01:00
parent fa33944919
commit 81cf36de22
7 changed files with 76 additions and 70 deletions

View file

@ -4,11 +4,12 @@
#include <string>
namespace tawashi {
class CGIEnv;
namespace cgi {
class Env;
typedef boost::container::flat_map<std::string, std::string> PostMapType;
const PostMapType& read_post (const CGIEnv& parEnv);
const PostMapType& read_post (const Env& parEnv);
} //namespace cgi
} //namespace tawashi