diff options
| author | compugab <compugab@hotmail.com> | 2026-06-26 17:26:31 -0400 |
|---|---|---|
| committer | compugab <compugab@hotmail.com> | 2026-06-26 17:26:31 -0400 |
| commit | 8151ed9701a204e77e8ddeba5f18f30a27cc8961 (patch) | |
| tree | 2ec6c4360dd28cff9fda0002f2f1ad9d57c3e8d2 /include/d | |
| parent | e6c69576b45e355c3218cd8c183bf14392c7b591 (diff) | |
Matching and linking d_lyt_control_title
Diffstat (limited to 'include/d')
| -rw-r--r-- | include/d/lyt/d_lyt_control_title.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/d/lyt/d_lyt_control_title.h b/include/d/lyt/d_lyt_control_title.h new file mode 100644 index 00000000..b5714f40 --- /dev/null +++ b/include/d/lyt/d_lyt_control_title.h @@ -0,0 +1,18 @@ +#ifndef D_LYT_CONTROL_TITLE_H +#define D_LYT_CONTROL_TITLE_H + +#include "d/d_base.h" + +class dLytControlTitle_c : public dBase_c { +public: + dLytControlTitle_c(); + virtual ~dLytControlTitle_c(); + + virtual int create() override; + virtual int doDelete() override; + virtual int execute() override; + virtual int draw() override; + +private: +}; +#endif |
