CppNoddy
0.92
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