1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-07-02 14:04:16 +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

@ -13,12 +13,12 @@ namespace tawashi {
protected:
Response (std::string&& parType);
const CGIEnv& cgi_env() const;
const cgi::Env& cgi_env() const;
private:
virtual void on_send (std::ostream& parStream) = 0;
CGIEnv m_cgi_env;
cgi::Env m_cgi_env;
std::string m_content_type;
};
} //namespace tawashi