gameui

view src/label.cc @ 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
children
line source
1 #include "label.h"
3 namespace goatkit {
5 struct LabelImpl {
6 };
8 Label::Label()
9 {
10 label = new LabelImpl;
11 }
13 Label::~Label()
14 {
15 delete label;
16 }
18 const char *Label::get_type_name() const
19 {
20 return "label";
21 }
23 } // namespace goatkit