25 lines
295 B
C++
25 lines
295 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __EWOL_CURSOR_H__
|
|
#define __EWOL_CURSOR_H__
|
|
|
|
namespace ewol
|
|
{
|
|
class Cursor : public ewol::Compositing
|
|
{
|
|
protected:
|
|
|
|
public:
|
|
|
|
};
|
|
};
|
|
|
|
#endif
|
|
|