]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/virtual-methods.hh
* gcc-3.4 snapshot: 3.4.0 20040215 (prerelease) compile fixes, and
[lilypond.git] / flower / include / virtual-methods.hh
1 /*
2   virtual-methods.hh -- declare macros for our do-it-yourself RTTI
3
4   source file of the Flower Library
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef VIRTUAL_METHODS_HH
11 #define VIRTUAL_METHODS_HH
12
13 #include <typeinfo>
14
15 #define classname(class_ptr)   demangle_classname (typeid (* (class_ptr)))
16
17 const char *
18 demangle_classname (std::type_info const &);
19
20 /* Virtual copy constructor.  Make up for C++'s lack of a standard
21    factory or clone () function.  Uses a typeof hack.  Usage:
22
23    class Foo : Baseclass
24    {
25       VIRTUAL_COPY_CONSTRUCTOR (Baseclass, Foo);
26    }; */
27
28 #define VIRTUAL_COPY_CONSTRUCTOR(base, name) \
29   /* Hack to fix constness: gcc >= 2.95 is correct in defining \
30      typeof (*this) in a const member function to be const.  */ \
31   virtual base* clone_const_helper () \
32     { \
33       return new name (*this); \
34     } \
35   virtual base *clone () const \
36     { \
37       /* return new name (*this); */ \
38       base *urg = (base*) this; \
39       return urg->clone_const_helper (); \
40     }
41
42 #endif /* VIRTUAL_METHODS_HH */