aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.h
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-07-02 14:06:17 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-07-05 17:40:17 -0300
commit8a6790433c874ff6882c7c191582b66e092ae6c5 (patch)
tree14047f74280cb1efa2735aaa1d307fa6eeacf695 /libshiboken/basewrapper.h
parent95b44627e2080c25a6fba858b18a68727c064d16 (diff)
Store class orignal name to future use.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente <hugo.lima@openbossa.org>
Diffstat (limited to 'libshiboken/basewrapper.h')
-rw-r--r--libshiboken/basewrapper.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libshiboken/basewrapper.h b/libshiboken/basewrapper.h
index 4031fb856..d5a23939c 100644
--- a/libshiboken/basewrapper.h
+++ b/libshiboken/basewrapper.h
@@ -102,6 +102,8 @@ struct LIBSHIBOKEN_API SbkBaseWrapperType
int is_multicpp:1;
/// True if this type was definied by the user.
int is_user_type:1;
+ /// C++ name
+ const char* original_name;
/// Type user data
void *user_data;
DeleteUserDataFunc d_func;