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

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

//!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