aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/sbkconverter.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Replaced Nokia copyrights in headerTeemu Kaukoranta2013-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Replaced old Nokia copyrights with Digia copyrights. Removed "All rights reserved" strings without leading copyrights were removed (for example, 'Copyright SomeCompany, all rights reserved remain untouched). Did NOT touch contact details, will change them later. Excluded folders that have '3rdparty' in path. Used command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*' {} \; | tee >(xargs sed -i -r '1,10 s/([ \t#*]*)(.*Copyright.*Nokia.*)/ \1Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I') >(xargs sed -i -r '1,10 s/(^[ \t#*]*)(all rights reserved.*)/\1/I') This excludes binary files and retains whitespace and #* characters in the beginning of the edited lines. Change-Id: I0d49f991c3dbd45d804843f185714e8681bc6c51 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Janne Anttila <janne.anttila@digia.com>
* Added a convenience method to check if a converter belongs to a wrapper type.Marcelo Lira2012-03-081-0/+5
|
* Added adapter class SpecificConverter to provide type conversion based on a ↵Marcelo Lira2012-03-081-10/+53
| | | | | | | given string. Also added code to register a couple of type conversions by name, a bunch of related tests, and some fixes to the converter functions.
* Added a "to Python" converter function that gets a SbkConverter object.Marcelo Lira2012-03-081-3/+8
|
* Added some setting and converting functions to the new converter's API.Marcelo Lira2012-03-081-2/+28
|
* Added functions to the new converters API to check if a type is value or object.Marcelo Lira2012-03-081-0/+11
| | | | Comes with unit tests.
* Register type converters by name.Marcelo Lira2012-03-081-1/+16
| | | | This way they can be queried as the soon-to-be-deprecated TypeResolvers.
* Make converter branch work on a Python3.2 setup.Hugo Parente Lima2012-03-081-1/+1
|
* SbkConverter's copyToPython function now returns Python None for C++ NULL ↵Marcelo Lira2012-03-081-0/+2
| | | | pointer.
* New conversions for containers.Marcelo Lira2012-03-081-0/+122
|
* Converter can be registered and retrieved for string representations of types.Marcelo Lira2012-03-081-1/+42
|
* New converters for C++ primitive types.Marcelo Lira2012-03-081-1/+31
|
* New converters for user added primitive types.Marcelo Lira2012-03-081-4/+21
| | | | Win32 fix for zero length type converter array.
* Implemented new type converters, but only for wrapper types.Marcelo Lira2012-03-081-0/+214