]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.13
authorfred <fred>
Fri, 29 Nov 1996 01:19:53 +0000 (01:19 +0000)
committerfred <fred>
Fri, 29 Nov 1996 01:19:53 +0000 (01:19 +0000)
hdr/molecule.hh

index 35060bd92adf8d3724b3a3573330efca2c4804b3..83f8ac1e2c6f4edde23fdd7bcf9e2f1dd1ea1b40 100644 (file)
@@ -5,11 +5,14 @@
 #include "boxes.hh"
 #include "item.hh"
 #include "symbol.hh"
+
 /// a symbol which can be translated, and freely copied
 struct Atom {
     Offset off;
     Symbol sym;
 
+    /****************/
+    
     void translate(Offset o) {
        off += o;
     }
@@ -18,7 +21,7 @@ struct Atom {
     Box extent() const;
     Atom(Symbol s);
 
-  void print() const;
+    void print() const;
 
     String TeXstring() const;
 };
@@ -27,6 +30,8 @@ struct Atom {
 struct Molecule {
     IPointerList<Atom*> ats;
 
+    /****************/
+    
     Molecule() { }
     Molecule(Atom a) { add(a) ; }