gameui

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/label.cc	Sat Mar 22 01:50:01 2014 +0200
     1.3 @@ -0,0 +1,23 @@
     1.4 +#include "label.h"
     1.5 +
     1.6 +namespace goatkit {
     1.7 +
     1.8 +struct LabelImpl {
     1.9 +};
    1.10 +
    1.11 +Label::Label()
    1.12 +{
    1.13 +	label = new LabelImpl;
    1.14 +}
    1.15 +
    1.16 +Label::~Label()
    1.17 +{
    1.18 +	delete label;
    1.19 +}
    1.20 +
    1.21 +const char *Label::get_type_name() const
    1.22 +{
    1.23 +	return "label";
    1.24 +}
    1.25 +
    1.26 +}	// namespace goatkit