gameui

view include/button.h @ 0:3aa12cdb9925

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 24 Feb 2014 22:25:49 +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_