OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_BASE_CONSTRUCTORMAGIC_H_ | 11 #ifndef WEBRTC_BASE_CONSTRUCTORMAGIC_H_ |
12 #define WEBRTC_BASE_CONSTRUCTORMAGIC_H_ | 12 #define WEBRTC_BASE_CONSTRUCTORMAGIC_H_ |
13 | 13 |
14 // Undefine macros first, just in case. Some third-party includes have their own | 14 // Undefine macros first, just in case. Some third-party includes have their own |
15 // version. | 15 // version. |
16 | 16 |
17 // Put this in the declarations for a class to be unassignable. | |
18 #undef DISALLOW_ASSIGN | 17 #undef DISALLOW_ASSIGN |
19 #define DISALLOW_ASSIGN(TypeName) \ | 18 #define DISALLOW_ASSIGN(TypeName) \ |
20 void operator=(const TypeName&) = delete | 19 void operator=(const TypeName&) |
21 | 20 |
22 // A macro to disallow the copy constructor and operator= functions. This should | 21 // A macro to disallow the evil copy constructor and operator= functions |
23 // be used in the declarations for a class. | 22 // This should be used in the private: declarations for a class. |
24 #undef DISALLOW_COPY_AND_ASSIGN | 23 #undef DISALLOW_COPY_AND_ASSIGN |
25 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ | 24 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ |
26 TypeName(const TypeName&) = delete; \ | 25 TypeName(const TypeName&); \ |
27 DISALLOW_ASSIGN(TypeName) | 26 DISALLOW_ASSIGN(TypeName) |
28 | 27 |
29 // A macro to disallow all the implicit constructors, namely the default | 28 // A macro to disallow all the implicit constructors, namely the |
30 // constructor, copy constructor and operator= functions. | 29 // default constructor, copy constructor and operator= functions. |
31 // | 30 // |
32 // This should be used in the declarations for a class that wants to prevent | 31 // This should be used in the private: declarations for a class |
33 // anyone from instantiating it. This is especially useful for classes | 32 // that wants to prevent anyone from instantiating it. This is |
34 // containing only static methods. | 33 // especially useful for classes containing only static methods. |
35 #undef DISALLOW_IMPLICIT_CONSTRUCTORS | 34 #undef DISALLOW_IMPLICIT_CONSTRUCTORS |
36 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ | 35 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ |
37 TypeName() = delete; \ | 36 TypeName(); \ |
38 DISALLOW_COPY_AND_ASSIGN(TypeName) | 37 DISALLOW_COPY_AND_ASSIGN(TypeName) |
39 | 38 |
| 39 |
40 #endif // WEBRTC_BASE_CONSTRUCTORMAGIC_H_ | 40 #endif // WEBRTC_BASE_CONSTRUCTORMAGIC_H_ |
OLD | NEW |