summaryrefslogtreecommitdiff
path: root/tools/ci/samples/test12.h
blob: 3dac36cae838a241d6d9c34f564f2be87ae5a6dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TEST12
#define TEST12

#include <map>
#include <string>

class Class1
{
    Class1(const std::string &str) :
        mStr(str)
    {
    }
    const std::string mStr;
};

#endif  // TEST12