UCX++
include
ucxpp
detail
noncopyable.h
1
#pragma once
2
3
namespace
ucxpp {
4
5
class
noncopyable
{
6
public
:
7
noncopyable
() =
default
;
8
noncopyable
(
noncopyable
&&) =
default
;
9
noncopyable
(
noncopyable
const
&) =
delete
;
10
noncopyable
&operator=(
noncopyable
const
&) =
delete
;
11
noncopyable
&operator=(
noncopyable
&&) =
default
;
12
};
13
14
}
// namespace ucxpp
ucxpp::noncopyable
Definition:
noncopyable.h:5
Generated by
1.9.4