From 1df2d73183a08fc37bc1b97a530c13a9445dad65 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 2 Jun 2009 18:33:41 +0000 Subject: Updates to the cgi system, and I'm putting the general CGI related stuff like encoding and decoding and uri encoded splitting etc in one class. --- src/cgiutil.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/cgiutil.h (limited to 'src/cgiutil.h') diff --git a/src/cgiutil.h b/src/cgiutil.h new file mode 100644 index 0000000..4a9ae2d --- /dev/null +++ b/src/cgiutil.h @@ -0,0 +1,16 @@ +#ifndef CGI_UTIL_H +#define CGI_UTIL_H + +namespace Bu +{ + class CgiUtil + { + public: + CgiUtil(); + virtual ~CgiUtil(); + + private: + }; +}; + +#endif -- cgit v1.2.3