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