]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/virtual-methods.hh
* Another grand 2003 update.
[lilypond.git] / flower / include / virtual-methods.hh
index f703f4b398c6540bcc916e8f4c28a0e0f8f049a6..61294e885ed74aae57b6811dd73ffbc36c1042d5 100644 (file)
@@ -3,43 +3,38 @@
 
   source file of the Flower Library
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef VIRTUAL_METHODS_HH
 #define VIRTUAL_METHODS_HH
 
- #include <typeinfo>
-#include "stdlib.h"            // size_t
+#include <typeinfo>
 
-#define classname(class_ptr)   demangle_classname(typeid(*(class_ptr)))
+#define classname(class_ptr)   demangle_classname (typeid (* (class_ptr)))
 
 const char *
-demangle_classname (type_info const &);
+demangle_classname (std::type_info const &);
 
 /**
 
    Virtual copy constructor. Make up for C++'s lack of a standard
-   clone() function.  Uses a typeof hack.  Usage:
+   clone () function.  Uses a typeof hack.  Usage:
 
    class Foo : Baseclass {
-       VIRTUAL_COPY_CONS(Baseclass);
+       VIRTUAL_COPY_CONS (Baseclass);
    };
    
  */
 
-// fix constness: gcc-2.95 is correct in defining
-//    typeof (*this)
-// in a const member function to be const
-
-#if 0
-#define VIRTUAL_COPY_CONS(base) \
-  virtual base *clone () const \
-  { \
-    return new typeof(*this) (*this); \
-  }
-#else
+/*
+  fix constness: gcc-2.95 is correct in defining
+  
+    typeof (*this)
+    
+  in a const member function to be const
+*/
 #define VIRTUAL_COPY_CONS(base) \
   virtual base* clone_const_helper () \
     { \
@@ -50,6 +45,6 @@ demangle_classname (type_info const &);
       base* urg = (base*)this; \
       return urg->clone_const_helper (); \
     }
-#endif 
+
 
 #endif /* VIRTUAL_METHODS_HH */