Revision: | 368 |
Committed: | 2008-08-23T02:44:00-07:00 (16 years, 10 months ago) by douglas |
Content type: | text/x-c |
File size: | 469 byte(s) |
Log Message: | Rearranged everything else. |
# | User | Rev | Content |
---|---|---|---|
1 | douglas | 131 | // CGI Renegade Map Selector |
2 | // | ||
3 | // Douglas Thrift | ||
4 | // | ||
5 | // CGIRenegadeMapSelector.h | ||
6 | |||
7 | #ifndef _CGIRenegadeMapSelector_h_ | ||
8 | #define _CGIRenegadeMapSelector_h_ | ||
9 | |||
10 | #include <iostream> | ||
11 | #include <fstream> | ||
12 | #include <sstream> | ||
13 | #include <string> | ||
14 | #include <vector> | ||
15 | douglas | 137 | #include <set> |
16 | douglas | 131 | #include <cstdlib> |
17 | #include <cstdio> | ||
18 | |||
19 | douglas | 136 | #include <cgicc/Cgicc.h> |
20 | |||
21 | douglas | 131 | using namespace std; |
22 | douglas | 136 | using namespace cgicc; |
23 | douglas | 131 | |
24 | extern bool debug; | ||
25 | extern string program; | ||
26 | douglas | 136 | extern Cgicc cgi; |
27 | douglas | 131 | |
28 | #endif // _CGIRenegadeMapSelector_h_ |