]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.34
authorfred <fred>
Sun, 24 Mar 2002 19:33:11 +0000 (19:33 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:33:11 +0000 (19:33 +0000)
Documentation/CodingStyle.pod

index 02b580c6025dc71b2bdc93b280d320cce0751ceb..521bf1e1266ab6b2e32d3b50cd7328c3eb8051a2 100644 (file)
@@ -42,13 +42,20 @@ the C<type> is a Hungarian notation postfix for $C<Type>$. 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();