blob: 6b1244fc6457e177f568d2a19c1e9e1f28502b00 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_BASE_CONSTRUCTORMAGIC_H_
12#define WEBRTC_BASE_CONSTRUCTORMAGIC_H_
13
henrike@webrtc.org680555f2014-06-27 15:49:02 +000014// Undefine macros first, just in case. Some third-party includes have their own
15// version.
16
17#undef DISALLOW_ASSIGN
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000018#define DISALLOW_ASSIGN(TypeName) \
19 void operator=(const TypeName&)
20
21// A macro to disallow the evil copy constructor and operator= functions
22// This should be used in the private: declarations for a class.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000023#undef DISALLOW_COPY_AND_ASSIGN
24#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
25 TypeName(const TypeName&); \
26 DISALLOW_ASSIGN(TypeName)
27
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000028// A macro to disallow all the implicit constructors, namely the
29// default constructor, copy constructor and operator= functions.
30//
31// This should be used in the private: declarations for a class
32// that wants to prevent anyone from instantiating it. This is
33// especially useful for classes containing only static methods.
henrike@webrtc.org680555f2014-06-27 15:49:02 +000034#undef DISALLOW_IMPLICIT_CONSTRUCTORS
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000035#define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
36 TypeName(); \
Thiago Farinaae0f0ee2015-04-04 23:56:53 +000037 DISALLOW_COPY_AND_ASSIGN(TypeName)
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000038
39
40#endif // WEBRTC_BASE_CONSTRUCTORMAGIC_H_