summaryrefslogtreecommitdiff
path: root/Layout/LayoutStartup.h
diff options
context:
space:
mode:
Diffstat (limited to 'Layout/LayoutStartup.h')
-rw-r--r--Layout/LayoutStartup.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Layout/LayoutStartup.h b/Layout/LayoutStartup.h
new file mode 100644
index 0000000..de8935e
--- /dev/null
+++ b/Layout/LayoutStartup.h
@@ -0,0 +1,23 @@
+#ifndef __LAYOUTSTARTUP_H__
+#define __LAYOUTSTARTUP_H__
+
+#include "Layout.h"
+
+class LayoutStartup : public Layout {
+ public:
+ LayoutStartup(DOGS102* lcd);
+ ~LayoutStartup();
+
+ void display();
+
+ private:
+ Label _lName;
+ Label _lInfo;
+ Label _lVersion;
+
+ Field _fVersion;
+
+ Image _iLogo;
+};
+
+#endif