aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/helper.h
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2010-02-18 17:53:53 -0300
committerLauro Neto <lauro.neto@openbossa.org>2010-02-19 12:59:34 -0300
commit4b0fa3fd45ed42cf881a25897ed66b5c0cf3a3fa (patch)
tree5a5ee9e41f223cdc4cba13ec864972d64067a117 /libshiboken/helper.h
parentf425ded9520c965202b62b1c2d172608f803497b (diff)
Adding sequenceToIntArray helper function
Diffstat (limited to 'libshiboken/helper.h')
-rw-r--r--libshiboken/helper.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libshiboken/helper.h b/libshiboken/helper.h
index 84084fef2..3bda34a7b 100644
--- a/libshiboken/helper.h
+++ b/libshiboken/helper.h
@@ -85,6 +85,14 @@ inline PyObject* makeTuple(const A& a, const B& b, const C& c, const D& d, const
*/
LIBSHIBOKEN_API bool PySequenceToArgcArgv(PyObject* argList, int* argc, char*** argv, const char* defaultAppName = 0);
+/**
+ * Convert a python sequence into a heap-allocated array of ints.
+ *
+ * \returns The newly allocated array or NULL in case of error or empty sequence. Check with PyErr_Occurred
+ * if it was successfull.
+ */
+LIBSHIBOKEN_API int* sequenceToIntArray(PyObject* obj, bool zeroTerminated = false);
+
} // namespace Shiboken
#endif // HELPER_H