AppOpts Pile   version 0.0.1
The pile provides the application with easy loading
one_opt_list.h
Go to the documentation of this file.
1 
10 #ifndef GUARD_APPOPTS_ONEOPTLIST_H_INCLUDE
11 #define GUARD_APPOPTS_ONEOPTLIST_H_INCLUDE
12 
13 #include <appopts/appopts-config.h>
14 #include <appopts/one_opt.h>
15 
16 #include <QMap>
17 #include <QString>
18 #include <QStringList>
19 
20 class UserMsg;
21 class PerSt;
22 
24 class APPOPTS_EXPORT OneOptList : public QList<OneOpt> {
25 
26 public:
27 
28  void
29  append (
30  const QString name,
31  const QString stgs_group = "general",
32  const QString description = QString(),
33  const QStringList default_val = QStringList());
34 
35 protected:
36 
37 
38 private:
39 
40 
41 };
42 
43 #endif // GUARD_APPOPTS_ONEOPTLIST_H_INCLUDE
A list of option definitions.
Definition: one_opt_list.h:24
Declarations for OneOpt class.