diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-12-01 21:16:40 -0200 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-12-02 17:26:02 -0200 |
commit | a5146ad246af19703671451451564e613e509463 (patch) | |
tree | 9b83014e1bac8a285ba555b5db8fbf1427edd426 /libshiboken/basewrapper.h | |
parent | 4954a2e8c95df27168b65519a8b61ce30b8ab0d6 (diff) | |
download | shiboken-a5146ad246af19703671451451564e613e509463.tar.gz shiboken-a5146ad246af19703671451451564e613e509463.tar.xz shiboken-a5146ad246af19703671451451564e613e509463.zip |
Remove cpp object copier as it was used by anyone and nobody missed him.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
Lauro Moura <lauro.neto@openbossa.org>
Diffstat (limited to 'libshiboken/basewrapper.h')
-rw-r--r-- | libshiboken/basewrapper.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libshiboken/basewrapper.h b/libshiboken/basewrapper.h index 1ddd40af..0f836079 100644 --- a/libshiboken/basewrapper.h +++ b/libshiboken/basewrapper.h @@ -62,7 +62,6 @@ typedef int* (*MultipleInheritanceInitFunction)(const void*); * The implementation of this function is auto generated by the generator and you don't need to care about it. */ typedef void* (*SpecialCastFunction)(void*, SbkObjectType*); -typedef void* (*ObjectCopierFunction)(const void*); typedef SbkObjectType* (*TypeDiscoveryFunc)(void*, SbkObjectType*); typedef void* (*ExtendedToCppFunc)(PyObject*); @@ -126,12 +125,6 @@ LIBSHIBOKEN_API bool isUserType(PyTypeObject* pyObj); */ LIBSHIBOKEN_API bool canCallConstructor(PyTypeObject* myType, PyTypeObject* ctorType); -/** - * Call copy function for the object type - **/ -LIBSHIBOKEN_API void* copy(SbkObjectType* self, const void* obj); -LIBSHIBOKEN_API void setCopyFunction(SbkObjectType* self, ObjectCopierFunction func); - LIBSHIBOKEN_API void setExternalCppConversionFunction(SbkObjectType* self, ExtendedToCppFunc func); LIBSHIBOKEN_API void setExternalIsConvertibleFunction(SbkObjectType* self, ExtendedIsConvertibleFunc func); LIBSHIBOKEN_API bool hasExternalCppConversions(SbkObjectType* self); |