// Copyright (C) 2013 Jérôme Leclercq // This file is part of the "Nazara Engine - Core module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_NONCOPYABLE_HPP #define NAZARA_NONCOPYABLE_HPP #include class NAZARA_API NzNonCopyable { protected: NzNonCopyable() = default; NzNonCopyable(const NzNonCopyable&) = delete; NzNonCopyable& operator=(const NzNonCopyable&) = delete; }; #endif // NAZARA_NONCOPYABLE_HPP