aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/voidholder.h
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2010-01-28 15:53:40 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-01-28 19:04:58 -0200
commit6daffa0a3452ee36ca8c39cf90fb0cefcbb5c205 (patch)
tree12faa27dcb6251f9b5ddd9b5ad458c66b371cc96 /tests/libsample/voidholder.h
parent22eb430cecf6ddc10eed04dd67c81485aba84ab6 (diff)
Adds support for void pointer conversions.
A new converter specialization was added to deal with 'void*' conversions. In the case of C++ generating a unknown void pointer a BaseWrapper is used to hold the said pointer. There is a new test for this situation. Reviewed by Renato Araújo <renato.filho@openbossa.org>
Diffstat (limited to 'tests/libsample/voidholder.h')
-rw-r--r--tests/libsample/voidholder.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/libsample/voidholder.h b/tests/libsample/voidholder.h
new file mode 100644
index 000000000..02c446d02
--- /dev/null
+++ b/tests/libsample/voidholder.h
@@ -0,0 +1,56 @@
+/*
+ * This file is part of the Shiboken Python Binding Generator 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 Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation. Please
+ * review the following information to ensure the GNU Lesser General
+ * Public License version 2.1 requirements will be met:
+ * http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+ *
+ * As a special exception to the GNU Lesser General Public License
+ * version 2.1, the object code form of a "work that uses the Library"
+ * may incorporate material from a header file that is part of the
+ * Library. You may distribute such object code under terms of your
+ * choice, provided that the incorporated material (i) does not exceed
+ * more than 5% of the total size of the Library; and (ii) is limited to
+ * numerical parameters, data structure layouts, accessors, macros,
+ * inline functions and templates.
+ *
+ * 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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 VOIDHOLDER_H
+#define VOIDHOLDER_H
+
+#include "libsamplemacros.h"
+
+class LIBSAMPLE_API VoidHolder
+{
+public:
+ explicit VoidHolder(void* ptr = 0) : m_ptr(ptr) {}
+ ~VoidHolder() {}
+ void* voidPointer() { return m_ptr; }
+ static void* gimmeMeSomeVoidPointer()
+ {
+ static void* pointerToSomething = new VoidHolder();
+ return pointerToSomething;
+ }
+private:
+ void* m_ptr;
+};
+
+#endif // VOIDHOLDER_H
+