Merge branch 'master' of git://labs.trolltech.com/qtscriptgenerator
[qtscriptgenerator/amarok.git] / generator / metaqtscript.h
blobcf209b7b1256da2c08b07df3d091a7e73e8cc390
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 METAQTSCRIPT_H
25 #define METAQTSCRIPT_H
27 #include "abstractmetalang.h"
29 class MetaQtScriptClass;
30 class MetaQtScriptField;
31 class MetaQtScriptFunction;
32 class MetaQtScriptType;
33 class MetaQtScriptVariable;
34 class MetaQtScriptArgument;
35 class MetaQtScriptEnumValue;
36 class MetaQtScriptEnum;
40 class MetaQtScriptType : public AbstractMetaType
41 {};
43 class MetaQtScriptArgument : public AbstractMetaArgument
44 {};
46 class MetaQtScriptField : public AbstractMetaField
47 {};
49 class MetaQtScriptFunction : public AbstractMetaFunction
50 {};
52 class MetaQtScriptEnumValue : public AbstractMetaEnumValue
53 {};
55 class MetaQtScriptEnum : public AbstractMetaEnum
56 {};
58 class MetaQtScriptClass : public AbstractMetaClass
60 virtual bool hasDefaultToStringFunction() const;
63 #endif // METAQTSCRIPT_H