1#ifndef TEST_H // comment 12#define TEST_H3namespace a {4class Foo {5public:6 int f();7 int f2(int a, int b);8};9} // namespace a10#endif // TEST_H11