// Copyright (C) 2015 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 #pragma once #ifndef NAZARA_ICONIMPL_HPP #define NAZARA_ICONIMPL_HPP #include #include namespace Nz { class Image; class IconImpl { public: IconImpl(); bool Create(const Image& image); void Destroy(); xcb_pixmap_t GetIcon(); xcb_pixmap_t GetMask(); private: XCBPixmap m_iconPixmap; XCBPixmap m_maskPixmap; }; } #endif // NAZARA_ICONIMPL_HPP