NuriaProject Framework  0.1
The NuriaProject Framework
argumentmanager.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_ARGUMENTMANAGER_HPP
18 #define NURIA_ARGUMENTMANAGER_HPP
19 
20 #include <QObject>
21 #include <QMap>
22 
23 #include "essentials.hpp"
24 #include <climits>
25 
26 namespace Nuria {
27 
41 class NURIA_CORE_EXPORT ArgumentManager : public QObject {
42  Q_OBJECT
43 public:
44 
45  ~ArgumentManager ();
46 
51  static QString getValue (const QString &path, const QString &defaultValue = QString ());
52 
59  static int getInt (const QString &path, int defaultValue = 0,
60  int min = INT_MIN, int max = INT_MAX, bool *ok = 0);
61 
66  static bool contains (const QString &path);
67 
68 private:
69  ArgumentManager (QObject *parent = 0);
70 
71 };
72 }
73 
74 #endif // NURIA_ARGUMENTMANAGER_HPP
Provides convenient access to arguments passed to the launcher.
Definition: argumentmanager.hpp:41
Definition: abstractsessionmanager.hpp:24