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.cpp | |
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.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cgiutil.cpp b/src/cgiutil.cpp new file mode 100644 index 0000000..1f7a8d0 --- /dev/null +++ b/src/cgiutil.cpp | |||
@@ -0,0 +1,10 @@ | |||
1 | #include "bu/cgiutil.h" | ||
2 | |||
3 | Bu::CgiUtil::CgiUtil() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Bu::CgiUtil::~CgiUtil() | ||
8 | { | ||
9 | } | ||
10 | |||