Matching and linking d_lyt_control_title

This commit is contained in:
compugab
2026-06-26 17:26:31 -04:00
parent e6c69576b4
commit 8151ed9701
4 changed files with 71 additions and 24 deletions
+18
View File
@@ -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