diff options
Diffstat (limited to 'tools/ci/samples/test11.cpp')
-rw-r--r-- | tools/ci/samples/test11.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/ci/samples/test11.cpp b/tools/ci/samples/test11.cpp new file mode 100644 index 0000000..89430b5 --- /dev/null +++ b/tools/ci/samples/test11.cpp @@ -0,0 +1,18 @@ +#include "test11.h" + +#include <map> +#include <string> + +class Class1 +{ + Class1(const std::string &str) : + mStr(str) + { + } + const std::string mStr; +}; + +int function1() +{ + return 0; +} |