changeset 4 | 468f4c8d3d5b |
3:d8fccb2cd802 | 4:468f4c8d3d5b |
---|---|
1 #ifndef CONFIG_H |
|
2 #define CONFIG_H |
|
3 |
|
4 #include <QHash> |
|
5 #include <QString> |
|
6 |
|
7 class Input; |
|
8 class QTextStream; |
|
9 class QTextCodec; |
|
10 |
|
11 bool parseConfig( |
|
12 const QString &fileName, |
|
13 const QHash<QString,Input *> &options |
|
14 ); |
|
15 |
|
16 void writeStringValue(QTextStream &t,QTextCodec *codec,const QString &s); |
|
17 |
|
18 #endif |