blob: ea81cbbc992fc8eb0ff9496e248de8e4d4a0825c (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
virtual-methods.hh -- declare
source file of the Flower Library
(c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
*/
#ifndef VIRTUAL_METHODS_HH
#define VIRTUAL_METHODS_HH
/** a macro to declare the classes name as a static and virtual function.
The static_name() can *not* be inlined (this might have the effect that
s->name() != S::static_name(). Overlapping strings need not be merged in C++
*/
#define NAME_MEMBERS() \
static char const *static_name();\
virtual bool is_type_b(const char *)const; \
virtual char const *name() const{ return static_name(); } \
int a_stupid_nonexistent_function_to_allow_the_semicolon_come_out()
#define IMPLEMENT_STATIC_NAME(c)\
char const *c::static_name() { return #c; }
#define VIRTUAL_COPY_CONS(T, R)\
virtual R *clone() const { return new T(*this); } \
int yet_another_stupid_function_to_allow_semicolon()
#define IMPLEMENT_IS_TYPE_B(D) \
bool D::is_type_b(const char *s) const \
{ \
return s == static_name(); \
}
#define IMPLEMENT_IS_TYPE_B1(D,B) \
bool D::is_type_b(const char *s)const \
{ \
return s == static_name() || B::is_type_b(s); \
}
#define IMPLEMENT_IS_TYPE_B2(D, BA, BB) \
bool D::is_type_b(const char *s) const \
{ \
return s == static_name() || BA::is_type_b(s) || BB::is_type_b(s); \
}
#endif
|