blob: ab5d8ec45b96d146baec8255a1ef898017bdda4f [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
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.com91826102011-03-21 19:51:57 +000027class GR_API GrNoncopyable {
reed@google.comac10a2d2010-12-22 21:39:39 +000028public:
29 GrNoncopyable() {}
30
31private:
32 // illegal
33 GrNoncopyable(const GrNoncopyable&);
34 GrNoncopyable& operator=(const GrNoncopyable&);
35};
36
37#endif
38