ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/RenegadeMapSelector/RenegadeConfig.h
Revision: 67
Committed: 2003-03-11T15:50:44-08:00 (22 years, 3 months ago) by douglas
Content type: text/x-c
File size: 369 byte(s)
Log Message:
Added RenegadeConfig class and did some stuff.

File Contents

# User Rev Content
1 douglas 67 // Renegade Map Selector
2     //
3     // Douglas Thrift
4     //
5     // RenegadeConfig.h
6    
7     #ifndef _RenegadeConfig_h_
8     #define _RenegadeConfig_h_
9    
10     #include "RenegadeMapSelector.h"
11    
12     class RenegadeConfig
13     {
14     private:
15     string file;
16     string text;
17     public:
18     RenegadeConfig(const string& file) { this->file = file; }
19     ~RenegadeConfig() {}
20     bool load();
21     bool save();
22     };
23    
24     #endif // _RenegadeConfig_h_