CppNoddy  0.92
All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros Modules Pages
Uncopyable.h
Go to the documentation of this file.
1#ifndef UNCOPYABLE_H
2#define UNCOPYABLE_H
3
4namespace CppNoddy {
5
6 /// An object to block copying
7
8 class Uncopyable {
9
10 protected:
13
14 private:
15
16 Uncopyable(const Uncopyable&);
17 Uncopyable& operator=(const Uncopyable&);
18
19 };
20
21}
22
23#endif // UNCOPYABLE_H
An object to block copying.
Definition: Uncopyable.h:8
A collection of OO numerical routines aimed at simple (typical) applied problems in continuum mechani...

© 2012

R.E. Hewitt