aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testvoidarg.h
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2010-04-20 16:40:42 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:01 -0300
commit62c659481f9a105ffa789b32040375db5cbc959c (patch)
tree8aab9b4c6b6253e7261742bc46fa226d9a2c5d90 /tests/testvoidarg.h
parentd8b38821c1a2c4405506cefcf3dba284cbf2162d (diff)
Adding tests for 'void' argument in functions
Diffstat (limited to 'tests/testvoidarg.h')
-rw-r--r--tests/testvoidarg.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/testvoidarg.h b/tests/testvoidarg.h
new file mode 100644
index 000000000..589a3572d
--- /dev/null
+++ b/tests/testvoidarg.h
@@ -0,0 +1,37 @@
+/*
+* 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 TESTVOIDARG_H
+#define TESTVOIDARG_H
+#include <QObject>
+
+class TestVoidArg : public QObject
+{
+ Q_OBJECT
+private slots:
+ void testVoidParsedFunction();
+ void testVoidPointerParsedFunction();
+ void testVoidAddedFunction();
+};
+
+#endif