]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/type-swallow-trans.hh
release: 1.1.1
[lilypond.git] / lily / include / type-swallow-trans.hh
index 0bebd32512008a69d90a200d75c1df5f1d74cf6f..27bac3d661e49e96302cb27088d6367bc2373bf4 100644 (file)
@@ -1,9 +1,9 @@
 /*
-  type-swallow-grav.hh -- declare Type_swallow_translator
+  type-swallow-engraver.hh -- declare Type_swallow_translator
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #define TYPESWALLOW_GRAV_HH
 
 #include "translator.hh"
+
 /// eat a certain type of request
 class Type_swallow_translator : public virtual Translator
 {
 protected:
-  const char * type_;
+  const type_info * type_;
   bool do_try_request (Request*);
 public:
   DECLARE_MY_RUNTIME_TYPEINFO;
@@ -26,7 +27,7 @@ public:
 #define DECLARE_REQUEST_SWALLOWER(TYPE)  \
 struct TYPE ## _swallow_translator : public Type_swallow_translator {\
   TYPE ## _swallow_translator() { \
-    type_ = TYPE::static_name ();\
+    type_ = &typeid (TYPE);\
   }\
   DECLARE_MY_RUNTIME_TYPEINFO;\
   TRANSLATOR_CLONE(TYPE ## _swallow_translator);\