]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-tremolo.hh
release: 1.1.48
[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   Stem * stem_l_;
18 protected:
19   virtual void do_print () const;
20   virtual Molecule *do_brew_molecule_p () const;
21   virtual void do_substitute_element_pointer (Score_element*, Score_element*);
22   virtual Interval do_width () const;
23   virtual void do_pre_processing ();
24 public:
25   int abbrev_flags_i_;
26   Stem_tremolo ();
27   void set_stem (Stem *);
28 };
29
30 #endif /* ABBREV_HH */
31