-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuse_mbr_pointers.h
54 lines (50 loc) · 2.93 KB
/
use_mbr_pointers.h
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
48
49
50
51
52
53
54
/*
@copyright Russell Standish 2018
@author Russell Standish
This file is part of Classdesc
Open source licensed under the MIT license. See LICENSE for details.
*/
/**\file\brief
defines overloads supporting -use_mbr_pointers, when old style object descriptors provided
*/
#ifndef CLASSDESC_USE_MBR_POINTERS_H
#define CLASSDESC_USE_MBR_POINTERS_H
#include "function.h"
#define CLASSDESC_USE_OLDSTYLE_MEMBER_OBJECTS(descriptor) \
using classdesc::descriptor; \
namespace classdesc { \
template<class C, class T> \
typename enable_if<And<is_member_object_pointer<T>, \
Not<functional::is_nonmember_function_ptr<T> > >,void>::T \
descriptor(descriptor##_t& b, const string& d, C& o, T y) \
{::descriptor(b,d,o.*y);} \
\
/* for static object members */ \
template<class C, class T> \
typename enable_if< \
And<Not<is_base_of<is_const_static,C> >, \
is_object<T> >,void>::T \
descriptor(descriptor##_t& b, const string& d, C&, T* y) \
{::descriptor(b,d,*y);} \
}
// do nothing for function objects - suitable for all serialisation descriptors
#define CLASSDESC_FUNCTION_NOP(descriptor) \
namespace classdesc { \
/* bare function support */ \
template<class T> \
typename enable_if<is_function<T>,void>::T \
descriptor(descriptor##_t& b, const string& d, T* y) \
{} \
\
/* -use_mbr_pointers support for member functions */ \
template<class C, class T> \
typename enable_if<is_member_function_pointer<T>,void>::T \
descriptor(descriptor##_t&, const string&, C&, T) {} \
\
/* -use_mbr_pointers support for function pointer members */ \
template<class C, class T> \
typename enable_if<functional::is_nonmember_function_ptr<T>,void>::T \
descriptor(descriptor##_t&, const string&, C, T) \
{} \
}
#endif