]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/property-iterator.hh
Merge branch 'master' of ssh+git://jneem@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / include / property-iterator.hh
index 81c480422956b774dc8e23f754a810b767191b08..f2bc6d71521c4f5467b7fd325c13833f8701823a 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef PROPERTY_ITERATOR_HH
@@ -11,7 +11,6 @@
 
 #include "simple-music-iterator.hh"
 
-
 /**
    Iterate a property.
 */
@@ -20,13 +19,13 @@ class Property_iterator : public Simple_music_iterator
 public:
   DECLARE_SCHEME_CALLBACK (constructor, ());
   DECLARE_SCHEME_CALLBACK (once_finalization, (SCM, SCM));
+  DECLARE_CLASSNAME(Property_iterator);
 
 protected:
   virtual void do_quit ();
   virtual void process (Moment);
 };
 
-
 /**
    Iterate a property.
 */
@@ -34,6 +33,7 @@ class Property_unset_iterator : public Simple_music_iterator
 {
 public:
   DECLARE_SCHEME_CALLBACK (constructor, ());
+  DECLARE_CLASSNAME(Property_unset_iterator);
 protected:
   virtual void process (Moment);
 };
@@ -43,6 +43,7 @@ class Push_property_iterator : public Simple_music_iterator
 public:
   DECLARE_SCHEME_CALLBACK (constructor, ());
   DECLARE_SCHEME_CALLBACK (once_finalization, (SCM, SCM));
+  DECLARE_CLASSNAME(Push_property_iterator);
 protected:
   virtual void process (Moment);
   virtual void do_quit ();
@@ -52,6 +53,7 @@ class Pop_property_iterator : public Simple_music_iterator
 {
 public:
   DECLARE_SCHEME_CALLBACK (constructor, ());
+  DECLARE_CLASSNAME(Pop_property_iterator);
 protected:
   virtual void process (Moment);
 };