From 3059353b38ed1fc432cce584afad5bef3b7f2227 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 21 Apr 2020 17:31:56 +0200 Subject: BLI: Use .hh extension for C++ headers in blenlib --- source/blender/blenlib/BLI_utility_mixins.hh | 52 ++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 source/blender/blenlib/BLI_utility_mixins.hh (limited to 'source/blender/blenlib/BLI_utility_mixins.hh') diff --git a/source/blender/blenlib/BLI_utility_mixins.hh b/source/blender/blenlib/BLI_utility_mixins.hh new file mode 100644 index 00000000000..441575f9111 --- /dev/null +++ b/source/blender/blenlib/BLI_utility_mixins.hh @@ -0,0 +1,52 @@ +/* + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +/** \file + * \ingroup bli + */ + +#ifndef __BLI_UTILITY_MIXINS_HH__ +#define __BLI_UTILITY_MIXINS_HH__ + +namespace BLI { + +class NonCopyable { + public: + /* Disable copy construction and assignment. */ + NonCopyable(const NonCopyable &other) = delete; + NonCopyable &operator=(const NonCopyable &other) = delete; + + /* Explicitly enable default construction, move construction and move assignment. */ + NonCopyable() = default; + NonCopyable(NonCopyable &&other) = default; + NonCopyable &operator=(NonCopyable &&other) = default; +}; + +class NonMovable { + public: + /* Disable move construction and assignment. */ + NonMovable(NonMovable &&other) = delete; + NonMovable &operator=(NonMovable &&other) = delete; + + /* Explicitly enable default construction, copy construction and copy assignment. */ + NonMovable() = default; + NonMovable(const NonMovable &other) = default; + NonMovable &operator=(const NonMovable &other) = default; +}; + +} // namespace BLI + +#endif /* __BLI_UTILITY_MIXINS_HH__ */ -- cgit v1.2.3