-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEclipsePage.hpp
29 lines (28 loc) · 936 Bytes
/
EclipsePage.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
* This file is part of the Eclipse2017 project. It is subject to the GPLv3
* license terms in the LICENSE file found in the top-level directory of this
* distribution and at
* https://github.com/jjackowski/eclipse2017/blob/master/LICENSE.
* No part of the Eclipse2017 project, including this file, may be copied,
* modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*
* Copyright (C) 2017 Jeff Jackowski
*/
#include "Page.hpp"
class EclipsePage : public Page {
void timeTillEnd(
const DisplayInfo &di,
duds::hardware::devices::displays::TextDisplayStream &tds
);
public:
virtual SelectionResponse select(const DisplayInfo &, SelectionCause);
virtual void show(
const DisplayInfo &di,
duds::hardware::devices::displays::TextDisplayStream &tds
);
virtual void update(
const DisplayInfo &di,
duds::hardware::devices::displays::TextDisplayStream &tds
);
};