gameui

view include/button.h @ 4:e0916bb20b7f

changed the name to goatkit
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 21 Mar 2014 21:45:37 +0200
parents f1014234dece
children 5a84873185ff
line source
1 #ifndef GOATKIT_BUTTON_H_
2 #define GOATKIT_BUTTON_H_
4 #include "widget.h"
6 namespace goatkit {
8 struct ButtonImpl;
10 class Button : public Widget {
11 private:
12 ButtonImpl *button;
14 public:
15 Button();
16 virtual ~Button();
17 };
19 } // namespace goatkit
21 #endif // GOATKIT_BUTTON_H_