]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/property-iterator.hh
release: 1.0.1
[lilypond.git] / lily / include / property-iterator.hh
1 /*
2   property-iterator.hh -- declare Property_iterator
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 PROPERTY_ITERATOR_HH
11 #define PROPERTY_ITERATOR_HH
12
13 #include "music-iterator.hh"
14
15 class Property_iterator : public Music_iterator
16 {
17   Translation_property *property_l_;
18   
19 public:
20   DECLARE_MY_RUNTIME_TYPEINFO;
21   Property_iterator (Translation_property* prop_l);
22 protected:
23   virtual void process_and_next (Moment);
24 };
25
26 #endif // PROPERTY_ITERATOR_HH