X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=blobdiff_plain;f=hdr%2Fmolecule.hh;h=084321ce4e809be9a755ee93a95acad107f975f6;hb=89e80b41fb745ed7ebc2ba3ee4f183a740f305be;hp=9f20458fef68a156b285bbd8af9560b4c22e10f0;hpb=4400e6a334eec3cb014f05d9dc9e098907291bfd;p=lilypond.git diff --git a/hdr/molecule.hh b/hdr/molecule.hh index 9f20458fef..084321ce4e 100644 --- a/hdr/molecule.hh +++ b/hdr/molecule.hh @@ -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 ats; // change to List? - /****************/ + /* *************** */ 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