cppx-core
cppx-core
meta-type
No_copy_or_move.hpp
Go to the documentation of this file.
1
#pragma once // Source encoding: UTF-8 with BOM (π is a lowercase Greek "pi").
2
3
namespace
cppx
4
{
5
class
No_copy_or_move
6
{
7
auto
operator=(
const
No_copy_or_move
& ) ->
No_copy_or_move
& =
delete
;
8
No_copy_or_move
(
const
No_copy_or_move
& ) =
delete
;
9
10
auto
operator=(
No_copy_or_move
&& ) ->
No_copy_or_move
& =
delete
;
11
No_copy_or_move
(
No_copy_or_move
&& ) =
delete
;
12
13
public
:
14
No_copy_or_move
() {}
15
};
16
17
}
// namespace cppx
cppx::No_copy_or_move::No_copy_or_move
No_copy_or_move()
Definition:
No_copy_or_move.hpp:14
cppx
Definition:
dynamic-size-checking.hpp:12
cppx::No_copy_or_move
Definition:
No_copy_or_move.hpp:5
Generated by
1.8.15