]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-tremolo.hh
patch::: 1.3.9.hwn2
[lilypond.git] / lily / include / stem-tremolo.hh
1 /*   
2   stem-tremolo.hh -- declare Abbreviation
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef ABBREV_HH
11 #define ABBREV_HH
12
13 #include "item.hh"
14
15
16 class Stem_tremolo : public Item {
17 protected:
18   Stem * stem_l () const;
19   virtual void do_print () const;
20   virtual Molecule *do_brew_molecule_p () const;
21
22   static Interval dim_callback (Dimension_cache const*);
23 public:
24   int abbrev_flags_i_;
25   Stem_tremolo ();
26   void set_stem (Stem *);
27 };
28
29 #endif /* ABBREV_HH */
30