aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/sbkmodule.h
Commit message (Collapse)AuthorAgeFilesLines
* Create Module macro compatible with python 2.x and 3.x.Renato Filho2012-03-081-0/+16
|
* Added sbkpython.h to deal with conflicts and missing symbols between ↵Hugo Parente Lima2012-03-081-1/+1
| | | | Python2 and 3.
* Introduces new API to create and import Python modules.Marcelo Lira2012-03-081-0/+63
The Shiboken::Module namespace also provides management of module types, including the communication of types among dependent modules. Module::create() will call Shiboken::init(), so this can be removed from the generated module's source code. This deprecates the old Shiboken::importModule() function. The generation of module initialization code was updated to use the new Shiboken::Module functions.