15 lines
212 B
C
Raw Normal View History

2017-12-06 21:43:47 +08:00
#ifndef _LABEL_H_
#define _LABEL_H_
class c_label : public c_wnd
{
public:
virtual c_wnd* clone(){return new c_label();}
virtual void on_paint();
protected:
virtual void pre_create_wnd();
private:
};
#endif