diff options
author | Stephen Kelly <steveire@gmail.com> | 2017-01-05 22:17:35 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2017-01-05 22:18:30 +0000 |
commit | b05981a8fdf8e828513e1c51621108c41085cd54 (patch) | |
tree | 645b68dc5123b6aa66418169e8c0410992b257b2 | |
parent | e4775dbe9a3a6f4149a720dc862f53c96e65cb1e (diff) | |
download | extra-cmake-modules-b05981a8fdf8e828513e1c51621108c41085cd54.tar.gz extra-cmake-modules-b05981a8fdf8e828513e1c51621108c41085cd54.tar.bz2 |
Bindings: Add some content to the test source
Increase test coverage regarding transformations.
-rw-r--r-- | tests/GenerateSipBindings/cpplib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/GenerateSipBindings/cpplib.h b/tests/GenerateSipBindings/cpplib.h index 932b3b67..6ec3f575 100644 --- a/tests/GenerateSipBindings/cpplib.h +++ b/tests/GenerateSipBindings/cpplib.h @@ -47,6 +47,8 @@ public: int fwdDecl(const FwdDecl& f); int fwdDeclRef(FwdDecl& f); + mode_t dummyFunc(QObject* parent) { return 0; } + signals: void publicSlotCalled(); @@ -93,6 +95,8 @@ private: Q_DISABLE_COPY(NonCopyableByMacro) }; +Q_DECLARE_METATYPE(NonCopyableByMacro*) + class HasPrivateDefaultCtor { public: |