Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 935db703660adf7e085069b2d2af64b03cbbcefe (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
//!NameTest
//%CPP
int Hallo;

//!QualifiedName
//%CPP
int TestClass::Hallo;

//!FullyQualifiedName
//%CPP
int ::name;

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

//!ConversionName
//%CPP
class Foo
{
public:
    operator int();
};

//!TemplateID
//%CPP
A::B<T> b;

//!NestedTemplates
//%CPP
vector<vector<int> > vvi;

Back to the top