1.11.2 split up of xml helper functions. started to work on attributes
6 /*! \brief A single option which is listed in Options */
10 /*! Types of options */
12 Switch, //!< No paramater
13 String //!< Parameter is a string
17 Option(const QString &, const Type &, const QString &, const QString &);
18 void set (const QString &, const Type &, const QString &, const QString &);
23 void setArg(const QString &);
37 /*! \brief Simple class to deal with command line options */
45 void add (const QString &,const Option::Type &, const QString &, const QString&);
46 void setHelpText(const QString&);
47 QString getHelpText();
48 QString getProgramName();
49 QStringList getFileList();
50 bool isOn (const QString &);
51 QString getArg (const QString &);
57 QList <Option> optlist;