aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testdtorinformation.h
diff options
context:
space:
mode:
authorrenato araujo oliveira <renato@renato-note.(none)>2009-11-24 11:34:41 -0300
committerrenato araujo oliveira <renato@renato-note.(none)>2009-11-24 11:34:41 -0300
commit139e84644ea0088e16678e8b8c17b9e5b4fd6269 (patch)
tree4ab7ab1d309db688a87d8639c5a2dce2dfcbcafb /tests/testdtorinformation.h
parent9e03faa25a62176fef9a0bddaa29a95eea32715d (diff)
parentc1353d49402e79fd5a2d0006655004315be07752 (diff)
Merge commit 'mainline/master'
Diffstat (limited to 'tests/testdtorinformation.h')
-rw-r--r--tests/testdtorinformation.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/testdtorinformation.h b/tests/testdtorinformation.h
new file mode 100644
index 000000000..2e378001b
--- /dev/null
+++ b/tests/testdtorinformation.h
@@ -0,0 +1,41 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2009 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 TESTDTORINFORMATION_H
+#define TESTDTORINFORMATION_H
+
+#include <QObject>
+
+class AbstractMetaBuilder;
+
+class TestDtorInformation: public QObject
+{
+ Q_OBJECT
+private slots:
+ void testDtorIsPrivate();
+ void testDtorIsProtected();
+ void testDtorIsVirtual();
+ void testClassWithVirtualDtorIsPolymorphic();
+};
+
+#endif // TESTDTORINFORMATION_H