From 782301fba356e3a29c45cc99e790bb574a51b63c Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:33:11 +0000 Subject: [PATCH] lilypond-0.0.34 --- Documentation/CodingStyle.pod | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Documentation/CodingStyle.pod b/Documentation/CodingStyle.pod index 02b580c602..521bf1e126 100644 --- a/Documentation/CodingStyle.pod +++ b/Documentation/CodingStyle.pod @@ -42,13 +42,20 @@ the C is a Hungarian notation postfix for $C$. See below The source is commented in the DOC++ style. Check out doc++ at http://www.zib.de/Visual/software/doc++/index.html + /* + C style comments for multiline comments. + [...] + */ + + /** short description. Long class documentation. (Hungarian postfix) */ class Class { - /** short description. + /** + short description. long description */ @@ -57,8 +64,10 @@ http://www.zib.de/Visual/software/doc++/index.html /** short memo. long doco of member() + @param description of arguments + @return Rettype */ - member(); + Rettype member(Argtype); /// memo only boring_member(); -- 2.39.5