21 lines
234 B
C++
21 lines
234 B
C++
INTERFACE:
|
|
|
|
// This is class Foo.
|
|
class Foo
|
|
{
|
|
};
|
|
|
|
IMPLEMENTATION:
|
|
|
|
// A long, multiline comment in front of this function definition.
|
|
// Also, a lot of specifiers that need to be handled.
|
|
|
|
PUBLIC
|
|
inline
|
|
static
|
|
void
|
|
Foo::func1()
|
|
{
|
|
|
|
}
|