aboutsummaryrefslogtreecommitdiff
path: root/src/cgiutil.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-06-02 18:33:41 +0000
committerMike Buland <eichlan@xagasoft.com>2009-06-02 18:33:41 +0000
commit1df2d73183a08fc37bc1b97a530c13a9445dad65 (patch)
treef4c857d12961f84db9c2594723974d99fc7b1bfb /src/cgiutil.h
parentfcaaf2927914cfda505051693f5717b4a56ec04a (diff)
downloadlibbu++-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 'src/cgiutil.h')
-rw-r--r--src/cgiutil.h16
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
4namespace Bu
5{
6 class CgiUtil
7 {
8 public:
9 CgiUtil();
10 virtual ~CgiUtil();
11
12 private:
13 };
14};
15
16#endif