[go: up one dir, main page]

Menu

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

Download this file

36 lines (30 with data), 564 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
32
33
34
35
/**
* @file configFile.h
* @brief 管理配置文件
* @version 1.0
* @date 2020-04-14
*/
#ifndef CONFIGFILE_H
#define CONFIGFILE_H
#include <QString>
typedef struct
{
QString lastPath;
QString frameSizeType;
QString TTFFormat;
QString frameSize_Width;
QString frameSize_Height;
QString frameRate;
QString startFrame;
QString endFrame;
}config_dict_t;
class ConfigFile
{
public:
ConfigFile(QString path);
~ConfigFile();
config_dict_t config_dict;
private:
QString configFilePath;
};
#endif // CONFIGFILE_H