aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testmultipleinheritance.h
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-01 14:19:15 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-01 14:35:17 -0200
commit4a14c6632f6a4245a20bd46cb94f9d807188276d (patch)
treefbfc1ee183a26610dee726e7c908a7cd97d30ec5 /tests/testmultipleinheritance.h
parent5d456d500f3e142902523df2157bbef1b82bfe1a (diff)
Allow a class to multiple inherit from various object-types.
Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests/testmultipleinheritance.h')
-rw-r--r--tests/testmultipleinheritance.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/testmultipleinheritance.h b/tests/testmultipleinheritance.h
new file mode 100644
index 000000000..3a1bd388d
--- /dev/null
+++ b/tests/testmultipleinheritance.h
@@ -0,0 +1,38 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+*
+* Contact: PySide team <contact@pyside.org>
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License
+* version 2 as published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA
+*
+*/
+
+#ifndef TESTMULTIPLEINHERITANCE_H
+#define TESTMULTIPLEINHERITANCE_H
+
+#include <QObject>
+
+class AbstractMetaBuilder;
+
+class TestMultipleInheritance : public QObject
+{
+ Q_OBJECT
+ private slots:
+ void testVirtualClass();
+};
+
+#endif