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

#include "Layout.h"

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

        void display();

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

#endif