From: fred Date: Sun, 24 Mar 2002 19:33:11 +0000 (+0000) Subject: lilypond-0.0.34 X-Git-Tag: release/1.5.59~5307 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=782301fba356e3a29c45cc99e790bb574a51b63c;p=lilypond.git lilypond-0.0.34 --- 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();