From: <mik...@us...> - 2004-01-01 14:21:14
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web/src/server/http/servlet In directory sc8-pr-cvs1:/tmp/cvs-serv6022/src/server/http/servlet Modified Files: HttpSession.h SessionManager.h Log Message: 01/01/2004 Mikael Barbeaux * Externalized http method processing algorithms. Index: HttpSession.h =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/src/server/http/servlet/HttpSession.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- HttpSession.h 31 Dec 2003 10:43:58 -0000 1.2 +++ HttpSession.h 1 Jan 2004 14:21:10 -0000 1.3 @@ -17,6 +17,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef _HTTP_SESSION_H_ +#define _HTTP_SESSION_H_ + #include <time.h> #include <vector> #include <string> @@ -112,3 +115,6 @@ void setAttribute(string name, void *value); }; + +#endif + Index: SessionManager.h =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/src/server/http/servlet/SessionManager.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SessionManager.h 31 Dec 2003 10:43:58 -0000 1.1 +++ SessionManager.h 1 Jan 2004 14:21:10 -0000 1.2 @@ -17,6 +17,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef _SESSION_MANAGER_H_ +#define _SESSION_MANAGER_H_ + #include "HttpSession.h" #include <map> #include <vector> @@ -74,3 +77,6 @@ vector<string> getIds(); }; + +#endif + |