diff options
author | Stephen Kelly <steveire@gmail.com> | 2017-01-13 18:06:28 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2017-01-13 18:06:28 +0000 |
commit | af9f502f9629766130e171632d2072d563661959 (patch) | |
tree | ab77d12271937a6e579538991e8aa5704673665c /tests/GenerateSipBindings/cpplib.cpp | |
parent | 39454cd893309c1a00eb7a9254045d52a8ced169 (diff) | |
download | extra-cmake-modules-af9f502f9629766130e171632d2072d563661959.tar.gz extra-cmake-modules-af9f502f9629766130e171632d2072d563661959.tar.bz2 |
Bindings: Implement ModuleCode and MethodCode databases
Diffstat (limited to 'tests/GenerateSipBindings/cpplib.cpp')
-rw-r--r-- | tests/GenerateSipBindings/cpplib.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/GenerateSipBindings/cpplib.cpp b/tests/GenerateSipBindings/cpplib.cpp index 76b97b0e..7eb15939 100644 --- a/tests/GenerateSipBindings/cpplib.cpp +++ b/tests/GenerateSipBindings/cpplib.cpp @@ -146,3 +146,18 @@ qreal SomeNS::useEnum(MyFlags flags) { return flags; } + +int customMethod(QList<int> const& nums) +{ + return nums.size(); +} + +int SomeNS::customMethod(QList<int> const& nums) +{ + return 0; +} + +int anotherCustomMethod(QList<int> const& nums) +{ + return 0; +} |