]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/abbrev.hh
release: 1.0.1
[lilypond.git] / lily / include / abbrev.hh
1 /*   
2   abbrev.hh -- declare Abbreviation
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef ABBREV_HH
11 #define ABBREV_HH
12
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 *);
24 };
25
26 #endif /* ABBREV_HH */
27