aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/pysideproperty_p.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-12-03 15:55:41 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:47:56 -0300
commitd36b2398b8d9ddd76c669f24106cbe02eada1b57 (patch)
tree9816912eb2059ab7cf48ff22e7e8eeaa12c4138b /libpyside/pysideproperty_p.h
parent079e105618e8d3bff8515b8c993a2c68d04a92db (diff)
PySidePropertyPrivate struct moved to the private header.
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 {
/**