From 8f9f3da3930edf3fc2ae92e8ad0eac6898e14f3d Mon Sep 17 00:00:00 2001 From: fred Date: Sat, 21 Dec 1996 01:56:17 +0000 Subject: [PATCH] lilypond-0.0.19 --- hdr/moment.hh | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 hdr/moment.hh diff --git a/hdr/moment.hh b/hdr/moment.hh new file mode 100644 index 0000000000..83910b1a31 --- /dev/null +++ b/hdr/moment.hh @@ -0,0 +1,36 @@ +/* + moment.hh -- part of LilyPond + + (c) 1996 Han-Wen Nienhuys +*/ + +#ifndef MOMENT_HH +#define MOMENT_HH + +#include "real.hh" + + +struct Moment { + Real when; + /// current measure info + Real whole_per_measure; + + /// where am i + Real whole_in_measure; + + /// how long is one beat? + Real one_beat; + + /// idem + int bars; + /****************/ + void OK() const; + Moment(Real, const Moment*); + void print() const; + void setpartial(Real p); + Real barleft(); + void set_meter(int,int); +}; + +#endif // MOMENT_HH + -- 2.39.5