X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=inline;f=src%2Fuisupport%2Fkcmdlinewrapper.h;h=16cce140f9c47b55d2f899831459ac96761e7970;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hp=4ac1d21ee8e8e31db016e4e917d6e259116c5b68;hpb=61c8d84d1c849373e0f115dc748ed45cff95287d;p=quassel.git diff --git a/src/uisupport/kcmdlinewrapper.h b/src/uisupport/kcmdlinewrapper.h index 4ac1d21e..16cce140 100644 --- a/src/uisupport/kcmdlinewrapper.h +++ b/src/uisupport/kcmdlinewrapper.h @@ -26,20 +26,22 @@ #include //! Wrapper for KCmdLineOptions -class KCmdLineWrapper : public AbstractCliParser { +class KCmdLineWrapper : public AbstractCliParser +{ public: - KCmdLineWrapper(); + KCmdLineWrapper(); - bool init(const QStringList &arguments = QStringList()); + bool init(const QStringList &arguments = QStringList()); - QString value(const QString &longName); - bool isSet(const QString &longName); - void usage(); + QString value(const QString &longName); + bool isSet(const QString &longName); + void usage(); private: - void addArgument(const QString &longName, const CliParserArg &arg); + void addArgument(const QString &longName, const CliParserArg &arg); - KCmdLineOptions _cmdLineOptions; + KCmdLineOptions _cmdLineOptions; }; + #endif