aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testfunctiontag.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Global functions can now be renamed.Marcelo Lira2012-03-091-0/+25
| | | | | | | | This is accomplished via the "rename" attribute on the "function" tag. An unit test was added and the documentation updated. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Added the "function" tag to ApiExtractor.Hugo Parente Lima2012-03-091-0/+64
This change the behaviour of ApiExtractor regarding to global functions. All global function you want to be exported to python *need* to be especified in the type system with the function tag, otherwise they wont be exported at all. The syntax for this new tag is: <function signature="..." /> This is just the initial work for this tag, it is missign support for: - Function modifications. - Add a function overload with add-function tag.