SimpleITK  1.2.4
sitkNonCopyable.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright Insight Software Consortium
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18 #ifndef sitkNonCopyable_h
19 #define sitkNonCopyable_h
20 
21 #include "sitkCommon.h"
22 
23 namespace itk
24 {
25 namespace simple
26 {
27 
52 {
53 protected:
55 private:
56  NonCopyable &operator=( const NonCopyable & ); // Not implemented on purpose
57  NonCopyable( const NonCopyable & ); // Not implemented on purpose
58 };
59 
60 #if SITK_EXPLICIT_DEFAULT_DELETE_FUNCTIONS
61 
62 // see other implementation for doxygen
63 struct NonCopyable
64 {
65  NonCopyable() = default;
66  NonCopyable &operator=( const NonCopyable & ) = delete;
67  NonCopyable( const NonCopyable & ) = delete;
68 };
69 
70 #endif
71 
72 
73 } // end namespace simple
74 } // end namespace itk
75 
76 #endif // sitkNonCopyable_h
#define SITKCommon_EXPORT
Definition: sitkCommon.h:41
An inheratable class to disable copying of a class.
NonCopyable & operator=(const NonCopyable &)