mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-06-28 13:34:07 +08:00
13 lines
200 B
C++
13 lines
200 B
C++
#ifndef GUILITE_WIDGETS_INCLUDE_LABEL_H
|
|
#define GUILITE_WIDGETS_INCLUDE_LABEL_H
|
|
|
|
class c_label : public c_wnd
|
|
{
|
|
public:
|
|
virtual void on_paint();
|
|
protected:
|
|
virtual void pre_create_wnd();
|
|
};
|
|
|
|
#endif
|