16 lines
115 B
C++
16 lines
115 B
C++
INTERFACE [interfacepublic]:
|
|
|
|
// This is class Foo.
|
|
class Foo
|
|
{
|
|
};
|
|
|
|
IMPLEMENTATION:
|
|
|
|
PUBLIC
|
|
void
|
|
Foo::func1()
|
|
{
|
|
|
|
}
|