(C++)
// This is the description for Foo
// and the description for Bar.
void Foo(int i);
// <combine Foo>
int Bar(char *s);
----
//<docsource type= "combine" target= "Foo" />
int Bar(char *s);
the result will look like
(C++)
void Foo(int i);
int Bar(char *s);
Description
This is the description for Foo and the
description for Bar.