zMol
A viewer for molecular data using OpenGL and ambient occlusion
Main Page
Classes
Files
File List
zmol
noncopyable.hpp
1
/****************************************************************************
2
3
Copyright (c) 2012 Carlos Rafael Giani ( email: dv xxx AT pseudoterminal xxx DOT xxx org , remove the xxx )
4
5
This software is provided 'as-is', without any express or implied
6
warranty. In no event will the authors be held liable for any damages
7
arising from the use of this software.
8
9
Permission is granted to anyone to use this software for any purpose,
10
including commercial applications, and to alter it and redistribute it
11
freely, subject to the following restrictions:
12
13
1. The origin of this software must not be misrepresented; you must not
14
claim that you wrote the original software. If you use this software
15
in a product, an acknowledgment in the product documentation would be
16
appreciated but is not required.
17
18
2. Altered source versions must be plainly marked as such, and must not be
19
misrepresented as being the original software.
20
21
3. This notice may not be removed or altered from any source
22
distribution.
23
24
****************************************************************************/
25
26
27
28
#ifndef ZMOL_NONCOPYABLE_HPP
29
#define ZMOL_NONCOPYABLE_HPP
30
31
32
namespace
zmol
33
{
34
35
36
namespace
noncopyable_
37
{
38
39
class
noncopyable
40
{
41
protected
:
42
noncopyable() {}
43
~noncopyable() {}
44
private
:
45
noncopyable(noncopyable
const
&);
46
noncopyable
const
& operator = (noncopyable
const
&);
47
};
48
49
}
50
51
55
typedef
noncopyable_::noncopyable noncopyable;
56
57
58
}
59
60
61
#endif
62
Generated on Wed Jun 13 2012 22:29:59 for zMol by
1.8.1.1