lilypond-1.1.47
[lilypond.git] / lib / plet.cc
bloba145aa7ae48064bf2207df812d432bdc06496e45
1 /*
2 plet.cc -- implement Plet
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "plet.hh"
12 Plet::Plet ()
14 type_i_ = 1;
15 iso_i_ = 1;
18 Moment
19 Plet::mom () const
21 return Moment (iso_i_, type_i_);
24 bool
25 Plet::unit_b () const
27 return type_i_ == 1 && iso_i_ == 1;