Add parsing for alwaysDownloadConfig and alwaysDownloadDC.

This commit is contained in:
Gerhard Hoffmann 2023-11-21 09:48:23 +01:00
parent 746d96ca7c
commit 5ee1308c9d

View File

@ -17,6 +17,8 @@ class CommandLineParser : public QCommandLineParser {
QString m_showYoctoInstallStatus;
QString m_showExtendedVersion;
QString m_iniFileName;
QString m_alwaysDownloadConfig;
QString m_alwaysDownloadDC;
QCommandLineOption m_repositoryUrlOption;
QCommandLineOption m_iniFileDirectoryOption;
@ -24,6 +26,8 @@ class CommandLineParser : public QCommandLineParser {
QCommandLineOption m_pluginDirectoryOption;
QCommandLineOption m_pluginNameOption;
QCommandLineOption m_noDownloadOption;
QCommandLineOption m_alwaysDownloadConfigOption;
QCommandLineOption m_alwaysDownloadDCOption;
QCommandLineOption m_workingDirectoryOption;
QCommandLineOption m_dryRunOption;
QCommandLineOption m_extendedVersionOption;
@ -53,5 +57,7 @@ public:
bool yoctoVersion();
bool yoctoInstallStatus();
bool extendedVersion();
bool alwaysDownloadConfig();
bool alwaysDownloadDC();
};
#endif // COMMAND_LINE_PARSER_H_INCLUDED