Phi
libs
PhiCore
include
phi
type_traits
detail
nat.hpp
1
#ifndef INCG_PHI_CORE_TYPE_TRAITS_NAT_HPP
2
#define INCG_PHI_CORE_TYPE_TRAITS_NAT_HPP
3
4
#include "phi/phi_config.hpp"
5
6
#if PHI_HAS_EXTENSION_PRAGMA_ONCE()
7
# pragma once
8
#endif
9
10
DETAIL_PHI_BEGIN_NAMESPACE()
11
12
struct
nat
final
13
{
14
nat
() =
delete
;
15
nat
(
const
nat
&) =
delete
;
16
nat
(
nat
&&) =
delete
;
17
nat
& operator=(
const
nat
&) =
delete
;
18
nat
& operator=(
nat
&&) =
delete
;
19
~
nat
() =
delete
;
20
};
21
22
DETAIL_PHI_END_NAMESPACE()
23
24
#endif // INCG_PHI_CORE_TYPE_TRAITS_NAT_HPP
nat
Definition:
nat.hpp:12
Generated by
1.8.13