mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
43 lines
983 B
C++
43 lines
983 B
C++
#include "commandline/Option.h"
|
|
#include "commandline/Parser.h"
|
|
|
|
using namespace commandline;
|
|
|
|
Option::Option(const QString &name, const QString &description, const QString &valueName, const QString &defaultValue)
|
|
: QCommandLineOption(name, description, valueName, defaultValue)
|
|
{}
|
|
|
|
Option::Option(const QStringList &names, const QString &description, const QString &valueName, const QString &defaultValue)
|
|
: QCommandLineOption(names, description, valueName, defaultValue)
|
|
{}
|
|
|
|
bool Option::validate(Parser & parser, QString &value)
|
|
{
|
|
/* By default everything is accepted */
|
|
return true;
|
|
}
|
|
|
|
Option::Option(const QCommandLineOption &other)
|
|
: QCommandLineOption(other)
|
|
{}
|
|
|
|
QString Option::value(Parser &parser) const
|
|
{
|
|
return parser.value(*this);
|
|
}
|
|
|
|
QString Option::name() const
|
|
{
|
|
return this->names().last();
|
|
}
|
|
|
|
QString Option::getError() const
|
|
{
|
|
return this->_error;
|
|
}
|
|
|
|
const char* Option::getCString(Parser &parser) const
|
|
{
|
|
return value(parser).toLocal8Bit().constData();
|
|
}
|