GM6000 Digital Heater Controller Branch: main
SDX-1330
application.h
Go to the documentation of this file.
1#ifndef Ajax_Main_application_h
2#define Ajax_Main_application_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 contains the interface(s) that are application VARIANT specific
16 */
17
18///
19namespace Ajax {
20///
21namespace Main {
22
23/** This method is used to initialize the Application variant. It is called
24 BEFORE the common application initialization is performed.
25 */
27
28/** This method is used to initialize the Application Variant model points to
29 known state
30 */
32
33/** This method is used to 'open' any Application Variant specific objects. It
34 is called BEFORE the common application 'open' calls are made
35 */
37
38/** This method is use to launch the Application UI's home screen
39 */
41
42/** This method is used to 'close' any Application variant specific objects.
43 It is called AFTER to the application 'close' calls
44 */
46
47
48} // end namespaces
49}
50#endif // end header latch
void appvariant_close0()
This method is used to 'close' any Application variant specific objects.
void appvariant_open0()
This method is used to 'open' any Application Variant specific objects.
void appvariant_launchHomeScreen()
This method is use to launch the Application UI's home screen.
void appvariant_initializeModelPoints0()
This method is used to initialize the Application Variant model points to known state.
void appvariant_initialize0()
This method is used to initialize the Application variant.
The 'Ajax' namespace is the root name space all GM6000 application specific source code.