-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.hpp
44 lines (41 loc) · 1.24 KB
/
meta.hpp
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
#pragma once
namespace scl{
namespace tools{
/**
* @namespace scl::tools::meta
* A namespace englobing all the TMP tools
*/
namespace meta{
/**
* @namespace scl::tools::meta::details
* Namespace for implementation details for TMP
*/
namespace details{}
/**
* @namespace scl::tools::meta::fn_types
* Namespace for function types aliases
*/
namespace fn_types{}
}
}
}
#include <scl/tools/meta/void_t.h>
#include <scl/tools/meta/exists.h>
#include <scl/tools/meta/enable_if.h>
#include <scl/tools/meta/conditional.h>
#include <scl/tools/meta/is_convertible.h>
#include <scl/tools/meta/is_same.h>
#include <scl/tools/meta/is_instance.h>
#include <scl/tools/meta/fn_type.h>
#include <scl/tools/meta/fn_cast.h>
#include <scl/tools/meta/can_call.h>
#include <scl/tools/meta/type_check.h>
#include <scl/tools/meta/swap.h>
#include <scl/tools/meta/type_mod.h>
#include <scl/tools/meta/type_query.h>
#include <scl/tools/meta/defines_scl_to_string.h>
#include <scl/tools/meta/defines_std_to_string.h>
#include <scl/tools/meta/defines_ostream_operator.h>
#include <scl/tools/meta/constexpr_assert.h>
#include <scl/tools/meta/real_const.h>
#include <scl/tools/meta/fn_introspect.h>