Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
Variables
_
a
b
i
k
n
p
r
s
t
v
Typedefs
a
b
c
f
h
i
m
n
p
s
t
u
w
y
Enumerations
Enumerator
a
b
c
e
f
h
i
l
m
n
o
p
r
s
t
u
v
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
y
Enumerations
Enumerator
a
b
c
e
g
i
k
l
m
n
o
p
r
s
u
v
Related Functions
a
b
c
d
e
i
l
m
o
r
s
u
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
g
m
o
p
r
s
t
Variables
_
a
b
f
g
l
t
u
Typedefs
Enumerations
Enumerator
Macros
_
a
b
c
e
f
g
i
l
m
r
s
u
v
w
x
sick_visionary_cpp_shared
3pp
boost
core
core/noncopyable.hpp
Go to the documentation of this file.
1
// Boost noncopyable.hpp header file --------------------------------------//
2
3
// (C) Copyright Beman Dawes 1999-2003. Distributed under the Boost
4
// Software License, Version 1.0. (See accompanying file
5
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7
// See http://www.boost.org/libs/utility for documentation.
8
9
#ifndef BOOST_CORE_NONCOPYABLE_HPP
10
#define BOOST_CORE_NONCOPYABLE_HPP
11
12
#include <
boost/config.hpp
>
13
14
namespace
boost
{
15
16
// Private copy constructor and copy assignment ensure classes derived from
17
// class noncopyable cannot be copied.
18
19
// Contributed by Dave Abrahams
20
21
namespace
noncopyable_
// protection from unintended ADL
22
{
23
class
noncopyable
24
{
25
protected
:
26
#if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) && !defined(BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS)
27
BOOST_CONSTEXPR
noncopyable
() =
default
;
28
~noncopyable
() =
default
;
29
#else
30
noncopyable
() {}
31
~noncopyable
() {}
32
#endif
33
#if !defined(BOOST_NO_CXX11_DELETED_FUNCTIONS)
34
noncopyable
(
const
noncopyable
& ) =
delete
;
35
noncopyable
&
operator=
(
const
noncopyable
& ) =
delete
;
36
#else
37
private
:
// emphasize the following members are private
38
noncopyable
(
const
noncopyable
& );
39
noncopyable
&
operator=
(
const
noncopyable
& );
40
#endif
41
};
42
}
43
44
typedef
noncopyable_::noncopyable
noncopyable
;
45
46
}
// namespace boost
47
48
#endif // BOOST_CORE_NONCOPYABLE_HPP
boost::noncopyable_::noncopyable::~noncopyable
~noncopyable()=default
config.hpp
BOOST_CONSTEXPR
#define BOOST_CONSTEXPR
Definition:
suffix.hpp:961
boost
BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE.
boost::noncopyable_::noncopyable
Definition:
core/noncopyable.hpp:23
boost::noncopyable_::noncopyable::noncopyable
BOOST_CONSTEXPR noncopyable()=default
boost::noncopyable
noncopyable_::noncopyable noncopyable
Definition:
core/noncopyable.hpp:44
boost::noncopyable_::noncopyable::operator=
noncopyable & operator=(const noncopyable &)=delete
sick_visionary_ros
Author(s): SICK AG TechSupport 3D Snapshot
autogenerated on Thu Feb 8 2024 03:45:33