About
Contact
QtCreator
KDevelop
Solarized
1
#include
"test.h"
2
#include
"test2.h"
3
4
namespace
a
{
5
int
Foo
::
f
() {
6
return
0
;
7
}
8
int
Foo
::
f2
(
int
a
,
int
b
) {
9
return
a
+
b
;
10
}
11
}
// namespace a
12