lilypond-1.0.19
[lilypond.git] / lily / include / abbrev.hh
blobf0df714af25cf9be8825d5515fef1dca67fe0fc3
1 /*
2 abbrev.hh -- declare Abbreviation
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #ifndef ABBREV_HH
11 #define ABBREV_HH
13 #include "item.hh"
14 class Abbreviation : public Item {
15 Stem * stem_l_;
16 protected:
17 virtual void do_print () const;
18 virtual Molecule *brew_molecule_p () const;
19 virtual void do_substitute_dependent (Score_element*, Score_element*);
20 public:
21 int abbrev_flags_i_;
22 Abbreviation ();
23 void set_stem (Stem *);
26 #endif /* ABBREV_HH */