]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/pitch-squash-engraver.cc
* flower
[lilypond.git] / lily / pitch-squash-engraver.cc
index a58e8f2c134fa1f5f72d7735f1273a6ae0194e5c..0ccf797d46a679f129b55a4dfb96130a990e4a64 100644 (file)
@@ -1,23 +1,22 @@
-/*   
+/*
   pitch-squash-engraver.cc -- implement Pitch_squash_engraver
-  
+
   source file of the GNU LilyPond music typesetter
-  
+
   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+*/
 #include "staff-symbol-referencer.hh"
 #include "note-head.hh"
 #include "rhythmic-head.hh"
 #include "engraver.hh"
 
-class Pitch_squash_engraver : public Engraver {
+class Pitch_squash_engraver : public Engraver
+{
 public:
   TRANSLATOR_DECLARATIONS (Pitch_squash_engraver);
   virtual void acknowledge_grob (Grob_info);
 };
 
-
 void
 Pitch_squash_engraver::acknowledge_grob (Grob_info i)
 {
@@ -29,22 +28,20 @@ Pitch_squash_engraver::acknowledge_grob (Grob_info i)
     }
 }
 
-
-
 Pitch_squash_engraver::Pitch_squash_engraver ()
 {
 }
 
 ADD_TRANSLATOR (Pitch_squash_engraver,
-/* descr */       
-                 "Set the vertical position of noteheads to "
-                 "@code{squashedPosition}, if that "
-                 "property is set. "
-                 "This can be used to make  a single line staff "
-                 "demonstrating the rhythm of a melody.",
-
-/* creats*/       "",
-/* accepts */     "",
-/* acks  */      "note-head-interface",
-/* reads */       "squashedPosition",
-/* write */       "");
+               /* descr */
+               "Set the vertical position of noteheads to "
+               "@code{squashedPosition}, if that "
+               "property is set. "
+               "This can be used to make  a single line staff "
+               "demonstrating the rhythm of a melody.",
+
+               /* creats*/ "",
+               /* accepts */ "",
+               /* acks  */ "note-head-interface",
+               /* reads */ "squashedPosition",
+               /* write */ "");