reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2010 Google Inc. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | |
| 18 | #ifndef GrNoncopyable_DEFINED |
| 19 | #define GrNoncopyable_DEFINED |
| 20 | |
| 21 | #include "GrTypes.h" |
| 22 | |
| 23 | /** |
| 24 | * Base for classes that want to disallow copying themselves. It makes its |
| 25 | * copy-constructor and assignment operators private (and unimplemented). |
| 26 | */ |
bsalomon@google.com | 9182610 | 2011-03-21 19:51:57 +0000 | [diff] [blame^] | 27 | class GR_API GrNoncopyable { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 28 | public: |
| 29 | GrNoncopyable() {} |
| 30 | |
| 31 | private: |
| 32 | // illegal |
| 33 | GrNoncopyable(const GrNoncopyable&); |
| 34 | GrNoncopyable& operator=(const GrNoncopyable&); |
| 35 | }; |
| 36 | |
| 37 | #endif |
| 38 | |