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
y
z
+
Functions
_
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
y
+
Typedefs
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
e
i
n
o
p
r
u
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Typedefs
a
b
c
d
e
f
g
i
m
n
o
p
r
s
t
v
Enumerations
+
Enumerator
a
b
c
e
f
i
n
p
r
s
t
u
Properties
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
a
c
d
e
f
h
i
l
m
o
p
r
s
t
u
w
+
Variables
_
a
c
d
g
h
i
l
m
n
o
p
r
s
u
Typedefs
Enumerations
Enumerator
+
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
src
lib
coil
common
NonCopyable.h
Go to the documentation of this file.
1
// -*- C++ -*-
20
namespace
coil
21
{
49
class
NonCopyable
50
{
51
protected
:
67
NonCopyable
() {}
68
84
~NonCopyable
() {}
85
private
:
86
NonCopyable
(
const
NonCopyable
&);
87
NonCopyable
&
operator=
(
const
NonCopyable
&);
88
};
89
123
template
<
class
T>
124
class
NonCopyableCRTP
125
{
126
protected
:
142
NonCopyableCRTP
() {}
143
159
~NonCopyableCRTP
() {}
160
private
:
161
NonCopyableCRTP
(
const
NonCopyableCRTP
&);
162
T &
operator=
(
const
T &);
163
};
164
};
coil::NonCopyableCRTP::NonCopyableCRTP
NonCopyableCRTP()
Constructor.
Definition:
NonCopyable.h:142
coil::NonCopyableCRTP
Definition:
NonCopyable.h:124
coil::NonCopyable::operator=
NonCopyable & operator=(const NonCopyable &)
coil::NonCopyable::~NonCopyable
~NonCopyable()
Destructor.
Definition:
NonCopyable.h:84
coil::NonCopyable::NonCopyable
NonCopyable()
Constructor.
Definition:
NonCopyable.h:67
coil::NonCopyableCRTP::~NonCopyableCRTP
~NonCopyableCRTP()
Destructor.
Definition:
NonCopyable.h:159
coil::NonCopyable
Non-copyable Mixin.
Definition:
NonCopyable.h:49
coil
Common Object Interface Layer.
Definition:
ace/coil/Condition.cpp:22
openrtm_aist
Author(s): Noriaki Ando
autogenerated on Mon Feb 28 2022 23:00:43