From a199bd192f12e7c7ad870e52a70e99c6391a276c Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Nov 1996 14:16:48 +0000 Subject: [PATCH] lilypond-0.0.11 --- hdr/slur.hh | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 hdr/slur.hh 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 + + -- 2.39.5