Changeset 158 for trunk/src/configuration.h
- Timestamp:
- 09/25/2008 08:44:25 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/configuration.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/configuration.h
r157 r158 27 27 #include <list> 28 28 29 namespace configuration { 30 29 31 struct HighscoreItem; 30 32 … … 38 40 */ 39 41 void load(std::string file); 42 43 void save(); 40 44 private: 41 45 /** … … 46 50 void parseSettings(std::ifstream *file); 47 51 void parseHighscores(std::ifstream *file); 52 53 void saveSettings(std::ofstream *file); 54 void saveHighscores(std::ofstream *file); 48 55 49 56 std::map<std::string, std::string> m_settings; 50 57 HighscoreList m_highscores; 58 59 std::string m_file; 51 60 }; 52 61 … … 56 65 std::string date; 57 66 }; 67 68 } 58 69 59 70
Note: See TracChangeset
for help on using the changeset viewer.
