summaryrefslogtreecommitdiff
path: root/Layout/LayoutFile.h
blob: 640249f602c27a2a22e7598e12e3c98db168e529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __LAYOUTFILE_H__
#define __LAYOUTFILE_H__

#include "Layout.h"

class LayoutFile : public Layout {
    public:
        LayoutFile(DOGS102* lcd);
        ~LayoutFile();

        void display();

    private:
        Label _lMsg1;
        Label _lMsg2;
        Label _lMsg3;
        Label _lIns1;
        Label _lIns2;
        Label _lSw1;
        Label _lSw2;
};

#endif