aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/sbkenum.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-11-05 14:18:54 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:08:56 -0300
commit95d5b63552f804e7fc5b80428cabb34f57443c0b (patch)
tree5af3ee7b91ed54071302e5ae43fba85d029d5c62 /libshiboken/sbkenum.h
parent809d948aa99e52495111ad871cbad3d1ae955395 (diff)
pyenum.{h|cpp} moved to sbkenum.{h|cpp}
Diffstat (limited to 'libshiboken/sbkenum.h')
-rw-r--r--libshiboken/sbkenum.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/libshiboken/sbkenum.h b/libshiboken/sbkenum.h
new file mode 100644
index 000000000..447997e75
--- /dev/null
+++ b/libshiboken/sbkenum.h
@@ -0,0 +1,63 @@
+/*
+ * This file is part of the Shiboken Python Bindings Generator project.
+ *
+ * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
+ *
+ * Contact: PySide team <contact@pyside.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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 library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef SBKENUM_H
+#define SBKENUM_H
+
+#include <Python.h>
+#include "shibokenmacros.h"
+
+namespace Shiboken
+{
+
+extern "C"
+{
+
+typedef struct {
+ PyObject_HEAD
+ long ob_ival;
+ PyObject* ob_name;
+} SbkEnumObject;
+
+extern LIBSHIBOKEN_API PyTypeObject SbkEnumType_Type;
+
+LIBSHIBOKEN_API PyObject* SbkEnumObject_repr(PyObject* self);
+LIBSHIBOKEN_API PyObject* SbkEnumObject_name(PyObject* self);
+
+} // extern "C"
+
+inline bool isShibokenEnum(PyObject* pyObj)
+{
+ return pyObj->ob_type->ob_type == &SbkEnumType_Type;
+}
+
+LIBSHIBOKEN_API PyObject* SbkEnumObject_New(PyTypeObject *instanceType,
+ long item_value,
+ const char* item_name);
+LIBSHIBOKEN_API PyObject* SbkEnumObject_New(PyTypeObject *instanceType,
+ long item_value,
+ PyObject* item_name = 0);
+
+} // namespace Shiboken
+
+#endif // SKB_PYENUM_H
+