Happy New Year!
[quassel.git] / src / common / cliparser.h
index 761eb0d..d659cec 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2015 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 CLIPARSER_H
 #include "abstractcliparser.h"
 
 //! Quassel's own parser for command line arguments
-class CliParser : public AbstractCliParser {
+class CliParser : public AbstractCliParser
+{
 public:
-  CliParser();
+    CliParser();
 
-  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);
-  bool addLongArg(const CliParserArg::CliArgType type, const QString &name, const QString &value = QString());
-  bool addShortArg(const CliParserArg::CliArgType type, const char shortName, const QString &value = QString());
-  QString escapedValue(const QString &value);
-  QString lnameOfShortArg(const char arg);
-
-  QStringList argsRaw;
-  QMap<QString, CliParserArg> argsMap;
+    void addArgument(const QString &longName, const CliParserArg &arg);
+    bool addLongArg(const CliParserArg::CliArgType type, const QString &name, const QString &value = QString());
+    bool addShortArg(const CliParserArg::CliArgType type, const char shortName, const QString &value = QString());
+    QString escapedValue(const QString &value);
+    QString lnameOfShortArg(const char arg);
+
+    QStringList argsRaw;
+    QMap<QString, CliParserArg> argsMap;
 };
 
+
 #endif