diff options
Diffstat (limited to 'meson/test cases/cmake/18 skip include files/subprojects/cmMod/cmMod.hpp')
-rw-r--r-- | meson/test cases/cmake/18 skip include files/subprojects/cmMod/cmMod.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meson/test cases/cmake/18 skip include files/subprojects/cmMod/cmMod.hpp b/meson/test cases/cmake/18 skip include files/subprojects/cmMod/cmMod.hpp new file mode 100644 index 000000000..f7b780f11 --- /dev/null +++ b/meson/test cases/cmake/18 skip include files/subprojects/cmMod/cmMod.hpp @@ -0,0 +1,16 @@ +#pragma once + +#include "cmmodlib++_export.h" +#include <string> + +class CMMODLIB___EXPORT cmModClass { +private: + std::string str; + + std::string getStr1() const; + std::string getStr2() const; +public: + cmModClass(std::string foo); + + std::string getStr() const; +}; |