]> git.donarmstrong.com Git - lilypond.git/blobdiff - hdr/molecule.hh
release: 0.0.30
[lilypond.git] / hdr / molecule.hh
index 9f20458fef68a156b285bbd8af9560b4c22e10f0..084321ce4e809be9a755ee93a95acad107f975f6 100644 (file)
@@ -11,7 +11,7 @@ struct Atom {
     Offset off;
     Symbol sym;
 
-    /****************/
+    /* *************** */
     
     void translate(Offset o) {
        off += o;
@@ -26,11 +26,13 @@ struct Atom {
     String TeXstring() const;
 };
 
-/// a group of #Atom#s
+
+/** a group of individually translated symbols. You can add molecules
+    to the top, to the right, etc.  */
 struct Molecule {
     IPointerList<Atom*> ats;   // change to List<Atom>? 
 
-    /****************/
+    /* *************** */
     
     Molecule() { }
     Molecule(Atom a) { add(a) ; }
@@ -52,6 +54,4 @@ struct Molecule {
 private:
     void operator=(const Molecule&);
 };
-/** a group of individually translated symbols. You can add molecules
-    to the top, to the right, etc.  */
 #endif