aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/conversions.h
Commit message (Expand)AuthorAgeFilesLines
* Fix Converter<bool>::toCpp, to correctly convert number to boolean values.Hugo Parente Lima2010-07-061-1/+1
* Fix bug#256 - "PySide does not support signals with containers."Hugo Parente Lima2010-06-291-0/+3
* Fixed checkType of int and floating point converters.Hugo Parente Lima2010-06-101-2/+2
* Added Converter<T>::checkType.Hugo Parente Lima2010-06-091-0/+32
* Only convert None to a null pointer when there aren't conversions defined for...Hugo Parente Lima2010-04-061-3/+4
* Add support for multiple inheritance involving more than one C++ object.Hugo Lima2010-03-301-6/+7
* SbkBaseWrapper_New gets a non-const void pointer instead of a const one.Hugo Lima2010-03-301-2/+2
* Fixes Converter<void*>::toPython method.Marcelo Lira2010-03-231-0/+2
* Converter<T*>::toCpp specialization now converts None to NULL pointer first.Marcelo Lira2010-03-221-1/+3
* Speed up conversions of lists from python to c++ if the list classHugo Lima2010-03-181-0/+3
* Added ObjectTypeReferenceConverter, so object-types can be used as references.Hugo Lima2010-03-181-0/+13
* Sequence conversion are made ONLY for python sequences.Hugo Lima2010-03-181-3/+7
* Just try to reduce a bit the noise in source code caused by the use of templa...Hugo Lima2010-03-181-4/+2
* Add a default implementation for SbkType, so not binded types will return a n...Hugo Lima2010-03-181-1/+4
* Renamed templates used for conversions of containers.Hugo Lima2010-03-181-5/+5
* Changed the semantic of Converter<T>::isConvertible method.Hugo Lima2010-03-181-21/+70
* Do not incref and decref the python dict reference on python to c++ conversions.Hugo Lima2010-03-181-5/+0
* Fix reference leak in StdPair converter.Hugo Lima2010-03-181-2/+2
* Merge branch 'master' into extensibleconversionsMarcelo Lira2010-03-041-1/+1
|\
| * Merge remote branch 'hugopl/typediscovery2'Hugo Lima2010-03-031-1/+1
| |\
| | * Use polymorphic-id-expression to discover the correct type of a C++ object.Hugo Lima2010-03-021-1/+1
* | | Adds support for extensible converters for value type classes.Marcelo Lira2010-03-021-4/+24
|/ /
* / Refactored and documented base Converters.Marcelo Lira2010-03-021-59/+68
|/
* Rename SbkCreateWrapper to createWrapper, to follow our fuction naming conven...Hugo Lima2010-02-261-4/+4
* Fix bug #142 by eliminating the CppCopier::copy function and adding it to a f...Hugo Lima2010-02-261-7/+28
* Remove warnings related to comparison between signed and unsigned integer exp...Hugo Lima2010-02-221-21/+41
* The C string converter now transforms a Python None in a C null pointer.Marcelo Lira2010-02-201-1/+5
* Some optimizations and code cleanup on conversion code for std containers.Hugo Lima2010-02-181-11/+7
* Converter<T> doesn't inherits ConverterBase, to avoid uneeded template instan...Hugo Lima2010-02-181-1/+1
* char converter return string instead of intLauro Neto2010-02-021-1/+7
* Adds support for void pointer conversions.Marcelo Lira2010-01-281-0/+24
* Add overflow check to unsigned int, because we need it on 64bit platforms.Hugo Lima2010-01-221-21/+10
* Fix bug on overflow check routines under 32 bits platforms.Hugo Lima2010-01-221-33/+50
* Add special conversion rules to the char type.Hugo Lima2010-01-201-3/+28
* Converter<PyInt> now follows the Converter interface.Hugo Lima2010-01-201-2/+2
* Added template specialization SbkType<signed char>(), needed by someone.Hugo Lima2010-01-141-0/+1
* Implemented type discovery feature.Hugo Lima2010-01-141-3/+5
* Fix transfer ownership on return values.Hugo Lima2010-01-131-0/+1
* Replaces SbkCopyCppObject template function with the CppObjectCopier template...Marcelo Lira2009-12-221-113/+46
* Improvements and refactor on libshiboken's converters.Marcelo Lira2009-12-211-41/+87
* Refactored SbkType specializations and replaced "long long" by "PY_LONG_LONG".Marcelo Lira2009-12-211-78/+13
* Added template specializations for SbkType<T> when T is a primitive type.Hugo Lima2009-12-161-5/+81
* Tests for numerical implicit conversions and fixesLauro Neto2009-12-161-9/+36
* All wrapped classes now inherit from the SbkBaseWrapper of the metatype SbkBa...Marcelo Lira2009-12-141-1/+1
* Renamed ShiboTypeObject to SbkBaseWrapperType to clearify its relationship wi...Marcelo Lira2009-12-111-2/+2
* Converter<T>::copyCppObject method was replaced by a template function.Marcelo Lira2009-12-101-8/+25
* Renamed a lot of Shiboken things with "Py" prefix to use "Sbk" prefix.Marcelo Lira2009-12-081-7/+7
* Moved container converters from test library to libshiboken's converter header.Marcelo Lira2009-12-071-0/+117
* Added Shiboken_TypeCheck macro that makes use of PyType<T>().Marcelo Lira2009-12-071-3/+3
* Do not generate the method Converter<T>::createWrapper, it'll beHugo Lima2009-12-071-17/+22