GM6000 Digital Heater Controller Branch: main
SDX-1330
screens.h
Go to the documentation of this file.
1#ifndef Eros_Main_screens_h
2#define Eros_Main_screens_h
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file exposes handles to Screen instances for the Eros Application
16 */
17
18#include "Eros/Ui/Home/Screen.h"
20
21///
22namespace Eros {
23///
24namespace Main {
25
26/// Home Screen
27extern Eros::Ui::Home::Screen g_homeScreen;
28
29/// LCd TestScreen
30extern Eros::Ui::LcdTest::Screen g_lcdTextScreen;
31
32
33} // end namespaces
34}
35#endif // end header latch
This class implements the Home screen.
Definition Screen.h:37
This class implements the Home screen.
Definition Screen.h:32
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22