gameui

view include/button.h @ 2:e5b1525084f7

boolanim
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 20 Mar 2014 07:03:58 +0200
parents
children f1014234dece
line source
1 #ifndef GAMEUI_BUTTON_H_
2 #define GAMEUI_BUTTON_H_
4 #include "widget.h"
6 namespace gameui {
8 class ButtonImpl;
10 class Button {
11 private:
12 ButtonImpl *impl;
14 public:
15 Button();
16 virtual ~Button();
17 };
19 }
21 #endif // GAMEUI_BUTTON_H_