X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fkcmdlinewrapper.h;h=d306a3b87b588ef880dcb8c1a89bdbeb5edb83a1;hp=4ac1d21ee8e8e31db016e4e917d6e259116c5b68;hb=c64a887d0f05222590299fb2bb8d56fa9fadb16d;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/uisupport/kcmdlinewrapper.h b/src/uisupport/kcmdlinewrapper.h index 4ac1d21e..d306a3b8 100644 --- a/src/uisupport/kcmdlinewrapper.h +++ b/src/uisupport/kcmdlinewrapper.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2012 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