PACK Qt Binding  $VERSION$
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
helper.h
Go to the documentation of this file.
1 // Copyright (C) 2009-2011 by Konrad Rosenbaum <konrad@silmor.de>
2 // protected under the GNU LGPL version 3 or at your option any newer.
3 // See COPYING.LGPL file that comes with this distribution.
4 //
5 
6 
7 #ifndef WOLF_HELPER_H
8 #define WOLF_HELPER_H
9 
10 #include <QList>
11 #include <QObject>
12 
13 class QDomElement;
14 class QDomNode;
15 
16 #ifndef WOLF_BASE_EXPORT
17 #define WOLF_BASE_EXPORT Q_DECL_IMPORT
18 #endif
19 
20 class WOLF_BASE_EXPORT WHelper:public QObject
21 {
22  Q_OBJECT
23  protected:
25  static QList<QDomElement>elementsByTagName(const QDomElement&,QString);
26 
28  bool str2bool(QString s);
29 };
30 
31 #endif
Definition: helper.h:20
#define WOLF_BASE_EXPORT
Definition: helper.h:17