-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.h
59 lines (50 loc) · 839 Bytes
/
test.h
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
/**
* This is a testyboi. C<A()>
*/
class Test {
int a;
};
/**
* Another class is defined here. It is called Testor.
* Testor is not a word now is it.
*
* Check it out.
* @code
* Testor temp();
* temp.sub_test(5);
* @endcode
*/
class Testor {
/**
* baddabing should not show up because it's referenced in the code
*/
int baddabing;
/**
* Constructor
*/
Testor() { }
/**
* This is a test method
*
* @param x Not sure it does something
* @return Returns something or another
*/
int sub_test(int x);
};
/**
* NotI2C class
*/
class NotI2C {
};
/**
* Callback<A()>
*/
template<typename R, typename A0>
class Callback<R(A0)> {
};
/**
* Abcdef<R(int)>
*/
template<typename R, typename A0>
class Abcdef<R(int)> {
};