Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1593d53835a4d0be688abd51e4e17b00bee60814 (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
#define DEBUG 1
enum {
	aFirstEnum,
	aSecondEnum, 
	aThirdEnum
};

enum {
	xFirstEnum,
	xSecondEnum, 
	xThirdEnum
};

int notAnonymous;
enum notAnonymousEnum {};
class notAnonymousClass {};

struct {
	int aStructField;
};

struct {
	int xStructField;
};

union {
	int aUnionMember1, aUnionMember2;
}; 

class {
public:
	int aField;
	float xAClassField;
	int aMethod();
	void xAClassMethod(int x);
};

class {
public:
	int anotherField;
	void anotherMethod();
};

class {
public:
	xOtherClass(char*);
	xOtherClass(int);
	int xOtherField;
	void xOtherMethod();
	void xOtherMethod(int);
};

// namespace {
//    void aNamespaceFunction(){
//    }
// };

// namespace {
//    void xNamespaceFunction(){
//    }
// };

Back to the top