aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-12-01 21:16:40 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:12:08 -0300
commitf8ad4eba987f53c05c42c2af6ec76bd59e196b75 (patch)
tree5f5cd67c7f3d14ac0c1dc6e83f20d8e803811ac5 /libshiboken
parent766a0b55bff35c10463c4601f087d550fd0d9837 (diff)
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')
-rw-r--r--libshiboken/basewrapper.cpp12
-rw-r--r--libshiboken/basewrapper.h7
-rw-r--r--libshiboken/basewrapper_p.h1
3 files changed, 0 insertions, 20 deletions
diff --git a/libshiboken/basewrapper.cpp b/libshiboken/basewrapper.cpp
index f93f14cf6..0d9439849 100644
--- a/libshiboken/basewrapper.cpp
+++ b/libshiboken/basewrapper.cpp
@@ -219,7 +219,6 @@ PyObject* SbkObjectTypeTpNew(PyTypeObject* metatype, PyObject* args, PyObject* k
d->ext_isconvertible = parentType->ext_isconvertible;
d->ext_tocpp = parentType->ext_tocpp;
d->type_discovery = parentType->type_discovery;
- d->obj_copier = parentType->obj_copier;
d->cpp_dtor = parentType->cpp_dtor;
d->is_multicpp = 0;
} else {
@@ -229,7 +228,6 @@ PyObject* SbkObjectTypeTpNew(PyTypeObject* metatype, PyObject* args, PyObject* k
d->ext_isconvertible = 0;
d->ext_tocpp = 0;
d->type_discovery = 0;
- d->obj_copier = 0;
d->cpp_dtor = 0;
d->is_multicpp = 1;
}
@@ -461,16 +459,6 @@ bool canCallConstructor(PyTypeObject* myType, PyTypeObject* ctorType)
return true;
}
-void* copy(SbkObjectType* self, const void* obj)
-{
- return self->d->obj_copier(obj);
-}
-
-void setCopyFunction(SbkObjectType* self, ObjectCopierFunction func)
-{
- self->d->obj_copier = func;
-}
-
bool hasExternalCppConversions(SbkObjectType* self)
{
return self->d->ext_tocpp;
diff --git a/libshiboken/basewrapper.h b/libshiboken/basewrapper.h
index 1ddd40af6..0f836079a 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);
diff --git a/libshiboken/basewrapper_p.h b/libshiboken/basewrapper_p.h
index 6637e4f78..d2814cf73 100644
--- a/libshiboken/basewrapper_p.h
+++ b/libshiboken/basewrapper_p.h
@@ -89,7 +89,6 @@ struct SbkObjectTypePrivate
/// Special cast function, null if this class doesn't have multiple inheritance.
SpecialCastFunction mi_specialcast;
TypeDiscoveryFunc type_discovery;
- ObjectCopierFunction obj_copier;
/// Extended "isConvertible" function to be used when a conversion operator is defined in another module.
ExtendedIsConvertibleFunc ext_isconvertible;
/// Extended "toCpp" function to be used when a conversion operator is defined in another module.