Revision: | 134 |
Committed: | 2003-04-05T23:32:04-08:00 (22 years, 2 months ago) by douglas |
File size: | 377 byte(s) |
Log Message: | Decided to use GNU Cgicc. |
# | Content |
---|---|
1 | // CGI Renegade Map Selector |
2 | // |
3 | // Douglas Thrift |
4 | // |
5 | // CGIRenegadeMapSelector.cpp |
6 | |
7 | #include "CGIRenegadeMapSelector.h" |
8 | #include "RenegadeConfig.h" |
9 | |
10 | #include <cgicc/Cgicc.h> |
11 | |
12 | using namespace cgicc; |
13 | |
14 | bool debug = false; |
15 | string program; |
16 | Cgicc cgi; |
17 | RenegadeConfig* config; |
18 | |
19 | int main(int argc, char* argv[], char** env) |
20 | { |
21 | cout << "Content-Type: text/html\n\n"; |
22 | |
23 | // |
24 | |
25 | return 0; |
26 | } |