aboutsummaryrefslogtreecommitdiff
path: root/src/cgiutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgiutil.h')
-rw-r--r--src/cgiutil.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cgiutil.h b/src/cgiutil.h
index 4a9ae2d..c101b62 100644
--- a/src/cgiutil.h
+++ b/src/cgiutil.h
@@ -1,6 +1,10 @@
1#ifndef CGI_UTIL_H 1#ifndef CGI_UTIL_H
2#define CGI_UTIL_H 2#define CGI_UTIL_H
3 3
4#include "bu/fstring.h"
5#include "bu/list.h"
6#include "bu/hash.h"
7
4namespace Bu 8namespace Bu
5{ 9{
6 class CgiUtil 10 class CgiUtil
@@ -9,6 +13,11 @@ namespace Bu
9 CgiUtil(); 13 CgiUtil();
10 virtual ~CgiUtil(); 14 virtual ~CgiUtil();
11 15
16// typedef Bu::List<Bu::FString> StrList;
17// typedef Bu::Hash<StrList> StrListHash;
18
19// static void parseUriQuery( const Bu::FString &sUri, StrListHash &hVar );
20
12 private: 21 private:
13 }; 22 };
14}; 23};