summaryrefslogtreecommitdiff
path: root/src/d/lyt/d_lyt_control_title.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/d/lyt/d_lyt_control_title.cpp')
-rw-r--r--src/d/lyt/d_lyt_control_title.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/d/lyt/d_lyt_control_title.cpp b/src/d/lyt/d_lyt_control_title.cpp
new file mode 100644
index 00000000..476cdfb1
--- /dev/null
+++ b/src/d/lyt/d_lyt_control_title.cpp
@@ -0,0 +1,27 @@
+#include "d/lyt/d_lyt_control_title.h"
+
+#include "f/f_base.h"
+
+
+SPECIAL_BASE_PROFILE(LYT_CONTROL_TITLE, dLytControlTitle_c, fProfile::LYT_CONTROL_TITLE, 0X2AB, 0);
+
+dLytControlTitle_c::dLytControlTitle_c() {}
+
+
+int dLytControlTitle_c::create() {
+ return SUCCEEDED;
+}
+
+int dLytControlTitle_c::doDelete() {
+ return SUCCEEDED;
+}
+
+int dLytControlTitle_c::execute() {
+ return SUCCEEDED;
+}
+
+int dLytControlTitle_c::draw() {
+ return SUCCEEDED;
+}
+
+dLytControlTitle_c::~dLytControlTitle_c() {}