CppNoddy
0.92
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
i
k
m
p
q
r
s
t
u
v
w
z
Functions
a
b
c
d
e
f
g
i
k
m
p
q
r
s
t
u
v
w
z
Variables
Typedefs
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
k
l
m
n
o
p
r
s
t
u
v
w
x
y
~
Variables
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
x
Typedefs
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
m
Typedefs
Enumerator
e
f
h
l
m
p
r
u
v
w
Macros
_
a
b
c
d
f
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
include
Uncopyable.h
Go to the documentation of this file.
1
#ifndef UNCOPYABLE_H
2
#define UNCOPYABLE_H
3
4
namespace
CppNoddy
{
5
6
/// An object to block copying
7
8
class
Uncopyable
{
9
10
protected
:
11
Uncopyable
() {}
12
~Uncopyable
() {}
13
14
private
:
15
16
Uncopyable
(
const
Uncopyable
&);
17
Uncopyable
& operator=(
const
Uncopyable
&);
18
19
};
20
21
}
22
23
#endif
// UNCOPYABLE_H
CppNoddy::Uncopyable
An object to block copying.
Definition:
Uncopyable.h:8
CppNoddy::Uncopyable::Uncopyable
Uncopyable()
Definition:
Uncopyable.h:11
CppNoddy::Uncopyable::~Uncopyable
~Uncopyable()
Definition:
Uncopyable.h:12
CppNoddy
A collection of OO numerical routines aimed at simple (typical) applied problems in continuum mechani...
Definition:
ArcLength_base.h:13
Generated on Tue Jan 1 1980 00:00:00 for CppNoddy by
1.9.5
© 2012
R.E. Hewitt