]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/virtual-methods.hh
Run `make grand-replace'.
[lilypond.git] / flower / include / virtual-methods.hh
index a5c80e1281ac9be7882767871d36f519f433dc25..57431f49082de48e222e6801fdc2fa2e89fdb356 100644 (file)
@@ -3,31 +3,42 @@
 
   source file of the Flower Library
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
-
 #ifndef VIRTUAL_METHODS_HH
 #define VIRTUAL_METHODS_HH
 
 #include <typeinfo>
-#include "stdlib.h"            // size_t
+using namespace std;
+
+#define classname(class_ptr) demangle_classname (typeid (* (class_ptr)))
+
+char const *
+demangle_classname (type_info const &);
 
-#define classname(class_ptr)   demangle_classname(typeid(*(class_ptr)).name())
+/*
+
+Virtual copy constructor.  Make up for C++'s lack of a standard
+factory or clone () function.  Usage:
 
-const char *
-demangle_classname (const char*);
+class Foo : Baseclass
+{
+VIRTUAL_COPY_CONSTRUCTOR (Baseclass, Foo);
+};
 
-/**
+*/
 
-   Virtual copy constructor. Make up for C++'s lack of a standard
-   clone() function.  Uses a typeof hack.  Usage:
+#define DECLARE_CLASSNAME(name) \
+  virtual const char *class_name () const {    \
+    return #name; \
+}
 
-   class Foo : Baseclass {
-       VIRTUAL_COPY_CONS(Baseclass);
-   };
-   
- */
-#define VIRTUAL_COPY_CONS(base)   virtual base *clone () const { return new typeof(*this) (*this); }
+#define VIRTUAL_COPY_CONSTRUCTOR(Base, name)   \
+  DECLARE_CLASSNAME(name);\
+  virtual Base *clone () const                 \
+  {                                            \
+    return new name (*this);                   \
+  }
 
-#endif 
+#endif /* VIRTUAL_METHODS_HH */