GM6000 Digital Heater Controller Branch: main
SDX-1330
StaticScreenApi.h
Go to the documentation of this file.
1#ifndef Ajax_ScreenMgr_StaticScreenApi_h_
2#define Ajax_ScreenMgr_StaticScreenApi_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
16
17///
18namespace Ajax {
19///
20namespace ScreenMgr {
21
22
23
24/** This class defines interface for Screens that only contain static data.
25 The expected usage for this class is for screen like a 'Splash' screen.
26
27 The current elapsed time (since power-up) is passed as argument to all
28 of the calls.
29 */
31{
32public:
33 /** This method requests the update/set/draw its screen contents
34 */
35 virtual void paint( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
36
37public:
38 /// Virtual destructor
39 virtual ~StaticScreenApi(){}
40};
41
42} // end namespaces
43}
44#endif // end header latch
45
This class defines interface for Screens that only contain static data.
Definition StaticScreenApi.h:31
virtual void paint(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method requests the update/set/draw its screen contents.
virtual ~StaticScreenApi()
Virtual destructor.
Definition StaticScreenApi.h:39
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35