ADTF
Loading...
Searching...
No Matches
adtf_base_type_traits.h
Go to the documentation of this file.
1
8#pragma once
9
10namespace adtf
11{
12namespace base
13{
14namespace penguin
15{
16namespace detail
17{
22template<class... T>
23constexpr bool always_false = false;
24
29template<size_t TSIZE>
31{
32 static constexpr size_t value = TSIZE;
33};
34
39template<typename T>
41{
42 static constexpr size_t value = sizeof(T);
43};
44
45} // namespace detail
46} // namespace penguin
47} // namespace base
48} // namespace adtf
Namespace for all internally used functionality implemented.
Definition adtf_base_type_traits.h:17
constexpr bool always_false
helper template to get a always false expression.
Definition adtf_base_type_traits.h:23
Namespace for all functionality of the ADTF Base SDK provided since v3.15.
Definition adtf_base_type_traits.h:15
Namespace for the ADTF Base SDK.
Definition adtf_base_type_traits.h:13
Namespace for all functionality provided by ADTF and its SDKs.
Definition adtf_client_connector.h:14
helper template to retrieve the given size as expression.
Definition adtf_base_type_traits.h:31
helper template to retrieve the given size as expression.
Definition adtf_base_type_traits.h:41