summaryrefslogtreecommitdiff
path: root/include/d/lyt/d_lyt_control_title.h
blob: b5714f402e24191c68536fa5057359a18555a82c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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