]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/type-swallow-translator.hh
* flower
[lilypond.git] / lily / include / type-swallow-translator.hh
index 55a520d91af27107484a347ccc798ca2c7a64c99..83b9506c2fa35e5fc9c6c6b6bf58b8e35ea9035b 100644 (file)
@@ -6,37 +6,38 @@
   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-
 #ifndef TYPESWALLOW_GRAV_HH
 #define TYPESWALLOW_GRAV_HH
 
 #include "translator.hh"
 
 /** eat a certain type of event
- (Duh, it's good for your skin)
- */
   (Duh, it's good for your skin)
+*/
 class Type_swallow_translator : public virtual Translator
 {
 protected:
   String swallow_string_;
-  bool try_music (Music*);
-public:  
+  bool try_music (Music *);
+public:
   VIRTUAL_COPY_CONS (Translator);
 };
 
 #define DECLARE_EVENT_SWALLOWER(TYPE)                                  \
-struct TYPE ## _swallow_translator : public Type_swallow_translator {  \
-  TRANSLATOR_DECLARATIONS (TYPE ## _swallow_translator);  \
-};                                                                     \
-  TYPE ## _swallow_translator :: TYPE ## _swallow_translator() {\
-      swallow_string_ =  #TYPE;                                                \
+  struct TYPE ## _swallow_translator : public Type_swallow_translator  \
+  {                                                                    \
+    TRANSLATOR_DECLARATIONS (TYPE ## _swallow_translator);             \
+  };                                                                   \
+  TYPE ## _swallow_translator :: TYPE ## _swallow_translator ()                \
+  {                                                                    \
+    swallow_string_ = #TYPE;                                           \
   }                                                                    \
-ADD_TRANSLATOR(TYPE ## _swallow_translator,                            \
-                 "Swallow events of " #TYPE " type.",          \
-                 "",                                                   \
-       "general-music", \
-                 "",                                                   \
-                 "",                                                   \
+  ADD_TRANSLATOR (TYPE ## _swallow_translator,                         \
+                 "Swallow events of " #TYPE " type.",                  \
+                 "",                                                   \
+                 "general-music",                                      \
+                 "",                                                   \
+                 "",                                                   \
                  "");
 
 #endif // TYPESWALLOW_GRAV_HH