Changeset 201 for trunk/src/statistics.h
- Timestamp:
- 05/04/2009 09:21:44 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/statistics.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/statistics.h
r199 r201 24 24 #include "configuration.h" 25 25 #include <vector> 26 #include <exception> 26 27 namespace statistics { 27 28 … … 55 56 void save(); 56 57 58 /** 59 * Loads data from the backend. 60 */ 61 void load_data(); 62 57 63 int _games_started; 58 64 int _games_finished; … … 61 67 std::vector<int> score_distribution; 62 68 configuration::Configuration *backend; 69 }; 70 71 class BadConfiguration : public std::exception { 72 virtual const char* what() const throw() 73 { 74 return "Bad Configuration"; 75 } 63 76 }; 64 77
Note: See TracChangeset
for help on using the changeset viewer.
