aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testremoveoperatormethod.h
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2011-07-25 14:37:48 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:17 -0300
commit1a989347e029e9f90b5c2c727243a02d1c1aa496 (patch)
tree9eadb9c8a9ccc7498353089d5e6e8ac667d1974c /tests/testremoveoperatormethod.h
parentdda325de53c44decafe8f95a803e561b66dbe43f (diff)
Added a test for operator methods removal.
Diffstat (limited to 'tests/testremoveoperatormethod.h')
-rw-r--r--tests/testremoveoperatormethod.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/testremoveoperatormethod.h b/tests/testremoveoperatormethod.h
new file mode 100644
index 000000000..1833ff11c
--- /dev/null
+++ b/tests/testremoveoperatormethod.h
@@ -0,0 +1,36 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2011 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 TESTREMOVEOPERATORMETHOD_H
+#define TESTREMOVEOPERATORMETHOD_H
+
+#include <QObject>
+
+class TestRemoveOperatorMethod : public QObject
+{
+ Q_OBJECT
+ private slots:
+ void testRemoveOperatorMethod();
+};
+
+#endif