]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-tremolo.hh
release: 1.3.55
[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--2000 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 Molecule do_brew_molecule () const;
20
21   static Interval dim_callback (Score_element*, Axis);
22 public:
23   Stem_tremolo (SCM);
24   void set_stem (Stem *);
25 };
26
27 #endif /* ABBREV_HH */
28