aboutsummaryrefslogtreecommitdiffstats
path: root/cppgenerator.cpp
Commit message (Expand)AuthorAgeFilesLines
* Known what flag to use on PyBuildValue when a container is used.Hugo Parente Lima2010-04-291-0/+1
* Use qualified C++ names on multiple inheritance helper functions.Hugo Parente Lima2010-04-291-7/+8
* Merge remote branch 'luck/fixprivctor'Luciano Wolf2010-04-231-4/+8
|\
| * Support to "only private constructor available" case.Luciano Wolf2010-04-211-4/+8
* | Fix problem when 2 globals functions with the same name were declared in diff...Hugo Parente Lima2010-04-231-4/+4
* | Do not delegate inner class initialization to the enclosed classes.Hugo Parente Lima2010-04-221-31/+10
* | Add namespaces to the array of type indexes.Hugo Parente Lima2010-04-221-3/+1
* | Remove generation of unused code.Hugo Parente Lima2010-04-221-12/+0
* | Use qualified class name when callign a method like self->ClassName::method().Hugo Parente Lima2010-04-221-2/+2
* | Added support for enums inside classes inside namespaces.Hugo Parente Lima2010-04-221-6/+3
* | Add include headers of global enums.Hugo Parente Lima2010-04-221-16/+6
* | Fixed argument policy propagate.Renato Filho2010-04-221-45/+61
|/
* Fix memory leak when calling methods with some caracteristics.Hugo Parente Lima2010-04-141-1/+1
* Remove warnings about "deprecated conversion from string constant to 'char*'".Hugo Parente Lima2010-04-121-1/+1
* Remove extra blank spaces added in generated code.Hugo Parente Lima2010-04-081-1/+1
* Better error messages when reimplementing virtual methods.Hugo Parente Lima2010-04-081-15/+27
* Small cosmetic changes to the generated code.Hugo Parente Lima2010-04-051-7/+5
* Fix crash caused by a None type passed as argument in comparison functions.Hugo Parente Lima2010-04-051-2/+11
* Do not write Py_RETURN_FALSE twice.Hugo Parente Lima2010-04-051-6/+2
* Added enum meta type, this will ease you to known if a PyObject is a Shiboken...Hugo Lima2010-04-051-1/+1
* Added flag is_user_type to identify types created by the user which inherits ...Hugo Lima2010-04-051-1/+2
* Improved the code that calls reverse operators added in other modules.Marcelo Lira2010-03-311-13/+29
* SbkBaseWrapper_Dealloc_PrivateDtor renamed to deallocWrapperWithPrivateDtor.Hugo Lima2010-03-301-1/+1
* SbkBaseWrapper_keepReference renamed to keepReference.Hugo Lima2010-03-301-2/+2
* Add support for multiple inheritance involving more than one C++ object.Hugo Lima2010-03-301-11/+10
* Use a non-template function for Python object deallocation.Hugo Lima2010-03-301-2/+5
* Fixes type casting on generated copy constructors.Marcelo Lira2010-03-261-5/+10
* Enum's __invert__ method must use 'self' argument.Marcelo Lira2010-03-231-1/+1
* The __not__ method is not generated any more since it is not being used.Marcelo Lira2010-03-231-1/+0
* Fixes virtual method writer to handle modification to return type.Marcelo Lira2010-03-221-5/+11
* Fixed virtual method callers to consider modifications to return type.Marcelo Lira2010-03-221-1/+6
* Merge branch 'operator'Lauro Neto2010-03-221-0/+32
|\
| * Make sure reverse shift operators are calledLauro Neto2010-03-221-0/+32
* | Fix CppGenerator::writeMinimalConstructorCallArguments when the class has non...Hugo Lima2010-03-221-3/+5
|/
* Fix error message for containers, replacing QList by list, QHash by dict, etc.Hugo Lima2010-03-221-0/+12
* Better handling of replaced types and custom conversions in the overload deci...Marcelo Lira2010-03-191-12/+24
* Minimal grammar fixesMatti Airas2010-03-191-3/+3
* Move the checks to verify if an object is invalid to Shiboken::cppObjectIsInv...Hugo Lima2010-03-181-24/+3
* Changed the semantic of Converter<T>::isConvertible method.Hugo Lima2010-03-181-12/+0
* added support for pure virtual methods returning void ptrsMatti Airas2010-03-171-2/+3
* bugfix: always write the return statementMatti Airas2010-03-171-2/+3
* Merge branch 'master' into extensibleconversionsMarcelo Lira2010-03-041-16/+62
|\
| * Remove the "(destructor)" cast to avoid wrong code to be silently compiled.Hugo Lima2010-03-021-2/+2
| * Use polymorphic-id-expression to discover the correct type of a C++ object.Hugo Lima2010-03-021-14/+60
* | Adds support for extensible converters for value type classes.Marcelo Lira2010-03-021-3/+1
* | Generator now writes code to support extended conversions.Marcelo Lira2010-03-021-0/+20
* | Adds extended conversions writer functions.Marcelo Lira2010-03-021-0/+50
* | Wrapper meta type can now point to converter extensions.Marcelo Lira2010-03-021-1/+3
|/
* Generator noew handles implicit conversions that are conversion operators.Marcelo Lira2010-03-011-3/+10
* Fix bug #142 by eliminating the CppCopier::copy function and adding it to a f...Hugo Lima2010-02-261-17/+18