Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/parser/preferences/ini_file_prefs_reader.h @ 9880

Last change on this file since 9880 was 9880, checked in by bensch, 18 years ago

new implementation of the IniParser
Now it is in Full stl-style, with iterators, and it does not have a strange internal state, that makes absolutely no sense

File size: 441 bytes
Line 
1/*!
2 * @file ini_file_prefs_reader.h
3 * @brief Definition of IniFilePrefsReader
4*/
5
6#ifndef _INI_FILE_PREFS_READER_H
7#define _INI_FILE_PREFS_READER_H
8
9#include "lib/parser/ini_parser/ini_parser.h"
10#include "preferences.h"
11
12
13//! A class for reading inifiles into Preferences
14class IniFilePrefsReader {
15
16 public:
17   IniFilePrefsReader(const std::string& fileName);
18   virtual ~IniFilePrefsReader();
19
20
21};
22
23#endif /* _INI_FILE_PREFS_READER_H */
Note: See TracBrowser for help on using the repository browser.