gameui

view include/label.h @ 5:5a84873185ff

rudimentary theme plugin system and other minor fixes
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 22 Mar 2014 01:50:01 +0200
parents e0916bb20b7f
children
line source
1 #ifndef GOATKIT_LABEL_H_
2 #define GOATKIT_LABEL_H_
4 #include "widget.h"
6 namespace goatkit {
8 class LabelImpl;
10 class Label : public Widget {
11 private:
12 LabelImpl *label;
14 public:
15 Label();
16 virtual ~Label();
18 virtual const char *get_type_name() const;
19 };
21 } // namespace goatkit
23 #endif // GOATKIT_LABEL_H_