// Copyright (C) 2017 Jérôme Leclercq // This file is part of the "Nazara Engine - Platform module" // For conditions of distribution and use, see copyright notice in Config.hpp #include #include #include namespace Nz { bool Icon::Create(const Image& icon) { Destroy(); std::unique_ptr impl(new IconImpl); if (!impl->Create(icon)) { NazaraError("Failed to create icon implementation"); return false; } m_impl = impl.release(); return true; } void Icon::Destroy() { if (m_impl) { m_impl->Destroy(); delete m_impl; m_impl = nullptr; } } }