add bindings for QGraphicsSceneDragDropEvent
[qtscriptgenerator.git] / generator / prigenerator.h
blob05b44a171b368c5f08d5d9e0ce50ba0f8dd213c6
1 /****************************************************************************
2 **
3 ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
4 **
5 ** This file is part of the Qt Script Generator project on Trolltech Labs.
6 **
7 ** This file may be used under the terms of the GNU General Public
8 ** License version 2.0 as published by the Free Software Foundation
9 ** and appearing in the file LICENSE.GPL included in the packaging of
10 ** this file. Please review the following information to ensure GNU
11 ** General Public Licensing requirements will be met:
12 ** http://www.trolltech.com/products/qt/opensource.html
14 ** If you are unsure which license is appropriate for your use, please
15 ** review the following information:
16 ** http://www.trolltech.com/products/qt/licensing.html or contact the
17 ** sales department at sales@trolltech.com.
19 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
20 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 ****************************************************************************/
24 #ifndef PRIGENERATOR_H
25 #define PRIGENERATOR_H
27 #include "generator.h"
29 #include <QStringList>
30 #include <QHash>
32 struct Pri
34 QStringList headers;
35 QStringList sources;
38 class PriGenerator : public Generator
40 Q_OBJECT
42 public:
43 virtual void generate();
45 void addHeader(const QString &folder, const QString &header);
46 void addSource(const QString &folder, const QString &source);
48 private:
49 QHash<QString, Pri> priHash;
52 #endif // PRIGENERATOR_H