LGI  1.0
Lliurex Graphic Interface
cursor.hpp
Go to the documentation of this file.
1 
2 #ifndef _LGI_CURSOR_
3 #define _LGI_CURSOR_
4 
5 #include <cairo.h>
6 
7 namespace net
8 {
9  namespace lliurex
10  {
11  namespace lgi
12  {
13  class BaseCursor
14  {
15  public:
16  virtual void SetCursor(int type)=0;
17  virtual void Draw(cairo_t * cairo)=0;
18 
19  };
20  }
21  }
22 }
23 
24 #endif
virtual void SetCursor(int type)=0
Definition: application.hpp:9
virtual void Draw(cairo_t *cairo)=0
Definition: cursor.hpp:13