About
Contact
QtCreator
KDevelop
Solarized
1
#
ifndef
TEST_H
// comment 1
2
#define
TEST_H
3
namespace
a
{
4
class
Foo
{
5
public
:
6
int
f
();
7
int
f2
(
int
a
,
int
b
);
8
};
9
}
// namespace a
10
#
endif
// TEST_H
11