Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 916e7952ba1ab220e5285f577c496c310c2cdd91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//!Commented NameTest1
//%CPP
//Test
int Hallo;

//!Commented NameTest2
//%CPP
int Hallo; //Test

//!Commented NameTest2
//%CPP
int Hallo /*Test*/;

//!Commented QualifiedName1
//%CPP
//TEST
int TestClass::Hallo;

//!Commented QualifiedName1
//%CPP
int TestClass::Hallo; //TEST

//!Commented QualifiedName1
//%CPP
int TestClass::Hallo /*Test*/;

//!Commented OperatorName1
//%CPP
class Foo
{
public:
    //Test
    char& operator [](unsigned int);
};

//!Commented OperatorName2
//%CPP
class Foo
{
public:
    char& operator [](unsigned int); //Test
};

//!Commented ConversionName1
//%CPP
class Foo
{
public:
    //Test
    operator int();
};

//!Commented ConversionName2
//%CPP
class Foo
{
public:
    operator int(); //Test
};

//!Commented ConversionName3
//%CPP
class Foo
{
public:
    operator int() /*Test*/;
};

//!Commented TemplateID1
//%CPP
//Test
A::B<T> b;

//!Commented TemplateID2
//%CPP
A::B<T> b; //Test

//!Commented NestedTemplates1
//%CPP
//Test
vector<vector<int> > vvi;

//!Commented NestedTemplates2
//%CPP
vector<vector<int> > vvi; //Test

Back to the top