/*
* This file is part of the https://github.com/QQxiaoming/YUVviewer.git
* project.
*
* Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#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