diff options
author | Shaheed Haque <srhaque@theiet.org> | 2017-02-04 11:16:19 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2017-02-04 11:30:04 +0000 |
commit | 98d065773413aba437c0bc537c701ed39d38a9b9 (patch) | |
tree | 817da50e7ca9e20ff0993caade125cd029e56d47 /tests/GenerateSipBindings/cpplib.h | |
parent | 050f15ef6a0c44dc6a7abbbe0f1954ea1925f473 (diff) | |
download | extra-cmake-modules-98d065773413aba437c0bc537c701ed39d38a9b9.tar.gz extra-cmake-modules-98d065773413aba437c0bc537c701ed39d38a9b9.tar.bz2 |
Bindings: Take account of visibility of classes
Diffstat (limited to 'tests/GenerateSipBindings/cpplib.h')
-rw-r--r-- | tests/GenerateSipBindings/cpplib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/GenerateSipBindings/cpplib.h b/tests/GenerateSipBindings/cpplib.h index b3ea22a8..958b8750 100644 --- a/tests/GenerateSipBindings/cpplib.h +++ b/tests/GenerateSipBindings/cpplib.h @@ -213,3 +213,9 @@ public: EXPORT int visible_fn() { return 1; } NO_EXPORT int invisible_fn() { return 1; } }; + +class NO_EXPORT Invisible +{ +public: + int someApi() { return 1; } +}; |