summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-0/common.hpp
blob: d75229d61eeddbd797df7caa65dcc9408d74703f (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#pragma once

#define self (*this)

// macro tools
#define _macro_expand_to_args(...) __VA_ARGS__
#define _macro_expand_to_comma_args(...) ,##__VA_ARGS__
#define _macro_call(funcormacro, ...) funcormacro(__VA_ARGS__)
#define _macro_remove_parens(args) _macro_expand_to_args args
#define _macro_comma_remove_parens(args) _macro_expand_to_comma_args args

#define _macro_expand_to_arg1(arg, ...) arg
#define _macro_expand_to_arg2(_1, arg, ...) arg

// macro argument iteration, from stackoverflow.com/questions/1872220
#define _macro_for_each(funcormacro,...) \
	_macro_fe_get(_0,##__VA_ARGS__, \
			_macro_fe_9,_macro_fe_8,_macro_fe_7,_macro_fe_6,_macro_fe_5,_macro_fe_4,_macro_fe_3,_macro_fe_2,_macro_fe_1,_macro_fe_0 \
			)(funcormacro,__VA_ARGS__)
	#define _macro_fe_0(what,    ...) 
	#define _macro_fe_1(what, x, ...) what(x)_macro_fe_0(what, __VA_ARGS__)
	#define _macro_fe_2(what, x, ...) what(x)_macro_fe_1(what, __VA_ARGS__)
	#define _macro_fe_3(what, x, ...) what(x)_macro_fe_2(what, __VA_ARGS__)
	#define _macro_fe_4(what, x, ...) what(x)_macro_fe_3(what, __VA_ARGS__)
	#define _macro_fe_5(what, x, ...) what(x)_macro_fe_4(what, __VA_ARGS__)
	#define _macro_fe_6(what, x, ...) what(x)_macro_fe_5(what, __VA_ARGS__)
	#define _macro_fe_7(what, x, ...) what(x)_macro_fe_6(what, __VA_ARGS__)
	#define _macro_fe_8(what, x, ...) what(x)_macro_fe_7(what, __VA_ARGS__)
	#define _macro_fe_9(what, x, ...) what(x)_macro_fe_8(what, __VA_ARGS__)
	#define _macro_fe_get( \
			_0,_1,_2,_3,_4,_5,_6,_7,_8,_9, \
			name,...) name
#define _macro_for_each_parens(funcormacro,...) \
	_macro_fe_get(_0,##__VA_ARGS__, \
			_macro_fep9,_macro_fep8,_macro_fep7,_macro_fe_6,_macro_fep5,_macro_fep4,_macro_fep3,_macro_fep2,_macro_fep1,_macro_fep0 \
			)(funcormacro,__VA_ARGS__)
	#define _macro_fep0(what,    ...) 
	#define _macro_fep1(what, x, ...) what x _macro_fep0(what, __VA_ARGS__)
	#define _macro_fep2(what, x, ...) what x _macro_fep1(what, __VA_ARGS__)
	#define _macro_fep3(what, x, ...) what x _macro_fep2(what, __VA_ARGS__)
	#define _macro_fep4(what, x, ...) what x _macro_fep3(what, __VA_ARGS__)
	#define _macro_fep5(what, x, ...) what x _macro_fep4(what, __VA_ARGS__)
	#define _macro_fep6(what, x, ...) what x _macro_fep5(what, __VA_ARGS__)
	#define _macro_fep7(what, x, ...) what x _macro_fep6(what, __VA_ARGS__)
	#define _macro_fep8(what, x, ...) what x _macro_fep7(what, __VA_ARGS__)
	#define _macro_fep9(what, x, ...) what x _macro_fep8(what, __VA_ARGS__)

namespace intellect {
namespace level0 {

struct concept;
struct ref;

}
namespace level1 { struct ref; }
namespace level2 { struct ref; }
namespace level3 { struct ref; }
namespace level4 { struct ref; }
namespace level5 { struct ref; }
namespace level6 { struct ref; }
namespace level7 { struct ref; }
namespace level8 { struct ref; }
namespace level9 { struct ref; }

}