15 lines
208 B
C
Raw Normal View History

2019-02-02 11:30:40 +08:00
#ifndef LABEL_H
#define LABEL_H
2017-12-06 21:43:47 +08:00
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