ref #49 Added class configParser.

This commit is contained in:
IgorekLoschinin 2021-04-24 22:26:02 +03:00
parent 223110e62a
commit a40da12555
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,21 @@
//#
//# Copyright (C) 2021-2021 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#include "configparser.h"
namespace CopyrighFixer {
ConfigParser::ConfigParser() {
}
const Config &ConfigParser::parseOptions() const {
}
}

View File

@ -0,0 +1,34 @@
//#
//# Copyright (C) 2021-2021 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#ifndef CONFIGPARSER_H
#define CONFIGPARSER_H
#include "CopyrighFixer_global.h"
#include "config.h"
namespace CopyrighFixer {
/**
* @brief The ConfigParser class
*/
class ConfigParser {
public:
ConfigParser();
/**
* @brief parseOptions This a method that will parse all input options.
* @return The config object.
*/
const Config &parseOptions() const;
};
}
#endif // CONFIGPARSER_H