blob: 89430b582a1a94c8050f313cf5dcf288c0edb78c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}
|