Files
NazaraEngine/src/Nazara/Utility/X11/CursorImpl.hpp
Youri Hubaut 37586e7283 Switch from Nz prefix to namespace Nz for linux
Former-commit-id: 64eeaf3c633254b04910ebd4576fd9e910002be0
2015-09-27 15:58:49 +02:00

31 lines
571 B
C++

// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_CURSORIMPL_HPP
#define NAZARA_CURSORIMPL_HPP
#include <Nazara/Prerequesites.hpp>
#include <xcb/xcb_cursor.h>
namespace Nz
{
class Image;
class CursorImpl
{
public:
bool Create(const Image& image, int hotSpotX, int hotSpotY);
void Destroy();
xcb_cursor_t GetCursor();
private:
xcb_cursor_t m_cursor;
};
}
#endif // NAZARA_CURSORIMPL_HPP