X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fkcmdlinewrapper.h;h=317d4387377005aef5780479832e2d598f9c4d4f;hb=3a2bd8f7cab945bfac7d9b8faf9250d4d66e9264;hp=72d8e2a7854d94b6e5f995f85a978a1e18e8058c;hpb=af5ee11e78a6c98f755d0cc5e3bef77028b227dd;p=quassel.git diff --git a/src/uisupport/kcmdlinewrapper.h b/src/uisupport/kcmdlinewrapper.h index 72d8e2a7..317d4387 100644 --- a/src/uisupport/kcmdlinewrapper.h +++ b/src/uisupport/kcmdlinewrapper.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef 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