From: fred Date: Sun, 24 Nov 1996 14:16:48 +0000 (+0000) Subject: lilypond-0.0.11 X-Git-Tag: release/1.5.59~6763 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a199bd192f12e7c7ad870e52a70e99c6391a276c;p=lilypond.git lilypond-0.0.11 --- diff --git a/hdr/slur.hh b/hdr/slur.hh new file mode 100644 index 0000000000..43359399e8 --- /dev/null +++ b/hdr/slur.hh @@ -0,0 +1,36 @@ +/* + slur.hh -- part of LilyPond + + (c) 1996 Han-Wen Nienhuys +*/ + +#ifndef SLUR_HH +#define SLUR_HH + +#include "spanner.hh" +#include "fproto.hh" +#include "vray.hh" + +struct Slur : Spanner { + + svec encompass; + int dir; + + bool open_left,open_right; + + /****************/ + + void print()const; + void preprocess(); + void add(Notehead*); + void set_default_dir(); + Interval height() const; + Spanner* broken_at(const PCol*, const PCol*) const; + void process(); +private: + void brew_molecule(); +}; + +#endif // SLUR_HH + +