From: Gonzalo A. <ga...@us...> - 2006-09-12 00:26:50
|
Update of /cvsroot/mod-c/ehtml/include In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv4490/include Modified Files: Response.h Log Message: * Added Response::SetCookie(const string& name, const string& value) method. Index: Response.h =================================================================== RCS file: /cvsroot/mod-c/ehtml/include/Response.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Response.h 15 Feb 2006 22:33:19 -0000 1.3 --- Response.h 12 Sep 2006 00:26:47 -0000 1.4 *************** *** 45,48 **** --- 45,50 ---- inline request_context * GetRequestContext() { return RequestContext; } + void SetCookie(const std::string& name, const std::string& value); + protected: /** |