]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/virtual-methods.hh
release: 1.3.72
[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--2000 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 (type_info const &);
19
20 /**
21
22    Virtual copy constructor. Make up for C++'s lack of a standard
23    clone() function.  Uses a typeof hack.  Usage:
24
25    class Foo : Baseclass {
26         VIRTUAL_COPY_CONS(Baseclass);
27    };
28    
29  */
30
31 // fix constness: gcc-2.95 is correct in defining
32 //    typeof (*this)
33 // in a const member function to be const
34
35 #if 0
36 #define VIRTUAL_COPY_CONS(base) \
37   virtual base *clone () const \
38   { \
39     return new typeof(*this) (*this); \
40   }
41 #else
42 #define VIRTUAL_COPY_CONS(base) \
43   virtual base* clone_const_helper () \
44     { \
45       return new typeof (*this) (*this); \
46     } \
47   virtual base* clone () const \
48     { \
49       base* urg = (base*)this; \
50       return urg->clone_const_helper (); \
51     }
52 #endif 
53
54 #endif /* VIRTUAL_METHODS_HH */