[go: up one dir, main page]

Menu

[ac09a1]: / src / configFile.h  Maximize  Restore  History

Download this file

32 lines (26 with data), 574 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* @file configFile.h
* @brief 管理配置文件
* @version 1.0
* @date 2020-04-14
*/
#ifndef CONFIGFILE_H
#define CONFIGFILE_H
#include <QString>
class ConfigFile {
public:
ConfigFile(const QString &path = QString());
~ConfigFile();
typedef struct {
QString lastPath;
QString frameSizeType;
QString TTFFormat;
QString frameSize_Width;
QString frameSize_Height;
QString frameCodePiont;
}config_dict_t;
config_dict_t config_dict;
private:
QString configFilePath;
};
#endif // CONFIGFILE_H