diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-06-02 18:33:41 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-06-02 18:33:41 +0000 |
commit | 1df2d73183a08fc37bc1b97a530c13a9445dad65 (patch) | |
tree | f4c857d12961f84db9c2594723974d99fc7b1bfb /src/cgiutil.h | |
parent | fcaaf2927914cfda505051693f5717b4a56ec04a (diff) | |
download | libbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.tar.gz libbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.tar.bz2 libbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.tar.xz libbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.zip |
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.
Diffstat (limited to '')
-rw-r--r-- | src/cgiutil.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 @@ | |||
1 | #ifndef CGI_UTIL_H | ||
2 | #define CGI_UTIL_H | ||
3 | |||
4 | namespace Bu | ||
5 | { | ||
6 | class CgiUtil | ||
7 | { | ||
8 | public: | ||
9 | CgiUtil(); | ||
10 | virtual ~CgiUtil(); | ||
11 | |||
12 | private: | ||
13 | }; | ||
14 | }; | ||
15 | |||
16 | #endif | ||