ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/CGIRenegadeMapSelector/CGIRenegadeMapSelector.cpp
Revision: 134
Committed: 2003-04-05T23:32:04-08:00 (22 years, 3 months ago) by douglas
Original Path: trunk/CGIRenegadeMapSelector/CGIRenegadeMapSelector.cpp
File size: 377 byte(s)
Log Message:
Decided to use GNU Cgicc.

File Contents

# User Rev Content
1 douglas 131 // CGI Renegade Map Selector
2     //
3     // Douglas Thrift
4     //
5     // CGIRenegadeMapSelector.cpp
6    
7     #include "CGIRenegadeMapSelector.h"
8     #include "RenegadeConfig.h"
9    
10 douglas 134 #include <cgicc/Cgicc.h>
11    
12     using namespace cgicc;
13    
14 douglas 131 bool debug = false;
15     string program;
16 douglas 134 Cgicc cgi;
17 douglas 131 RenegadeConfig* config;
18    
19 douglas 134 int main(int argc, char* argv[], char** env)
20 douglas 131 {
21 douglas 134 cout << "Content-Type: text/html\n\n";
22    
23 douglas 131 //
24    
25     return 0;
26     }