aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/pysideproperty_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'libpyside/pysideproperty_p.h')
-rw-r--r--libpyside/pysideproperty_p.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/libpyside/pysideproperty_p.h b/libpyside/pysideproperty_p.h
index 1ba9cb2be..9c6893ba2 100644
--- a/libpyside/pysideproperty_p.h
+++ b/libpyside/pysideproperty_p.h
@@ -27,6 +27,29 @@
struct PySideProperty;
+extern "C"
+{
+
+struct PySidePropertyPrivate {
+ char* typeName;
+ PyObject* type;
+ PyObject* fget;
+ PyObject* fset;
+ PyObject* freset;
+ PyObject* fdel;
+ PyObject* notify;
+ char* notifySignature;
+ char* doc;
+ bool designable;
+ bool scriptable;
+ bool stored;
+ bool user;
+ bool constant;
+ bool final;
+};
+
+} // extern "C"
+
namespace PySide { namespace Property {
/**