ConOpSys V2970  P004.07
ANVILEX control operating system
Application_Controller.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 //! @file Application_Controller.h
3 //! @brief ConOpSys application controller class header file.
4 //! @attention No special attention requered.
5 //! @copyright (C) 2015-2020 ANVILEX LLC
6 //! $HeadURL: https://192.168.3.4:8443/svn/P004_07/ConOpSys/Engine/Application_Controller.h $
7 //! $Revision: 2215 $
8 //! $Date: 2020-11-24 00:22:32 +0500 (Di, 24 Nov 2020) $
9 //! $Author: minch $
10 //------------------------------------------------------------------------------
11 //
12 // Redistribution and use in source and binary forms, with or without
13 // modification, are permitted provided that the following conditions are met:
14 //
15 // 1. Redistributions of source code must retain the above copyright notice,
16 // this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright notice,
19 // this list of conditions and the following disclaimer in the documentation
20 // and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of ANVILEX nor the names of its contributors may be
23 // used to endorse or promote products derived from this software without
24 // specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
30 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 // POSSIBILITY OF SUCH DAMAGE.
37 //
38 //------------------------------------------------------------------------------
39 
40 #pragma once
41 
42 //------------------------------------------------------------------------------
43 // Include system files
44 //------------------------------------------------------------------------------
45 
46 #include "Defines.h"
47 
48 //------------------------------------------------------------------------------
49 // Class definition
50 //------------------------------------------------------------------------------
51 
52 //! @brief Application controller class
54 {
55 
56  //----------------------------------------------------------------------------
57  // Public defines, methods and variables
58  //----------------------------------------------------------------------------
59 
60  public:
61 
62  //!-------------------------------------------------------------------------
63  //! @brief Class constructor method.
64  //! @note None
65  //! \par Override
66  //! Not allowed
67  //! @attention Don't call this method directly.
68  //--------------------------------------------------------------------------
69 
71 
72  //!-------------------------------------------------------------------------
73  //! @brief Class destructor method.
74  //! @note None
75  //! \par Override
76  //! Not allowed
77  //! @attention Don't call this method directly.
78  //--------------------------------------------------------------------------
79 
81 
82  //!-------------------------------------------------------------------------
83  //! @brief Set error reset request method.
84  //! @note None
85  //! @return None
86  //! \par Override
87  //! Not allowed
88  //! @attention None
89  //--------------------------------------------------------------------------
90 
92 
93  //!-------------------------------------------------------------------------
94  //! @brief Clear error reset request method.
95  //! @note None
96  //! @return None
97  //! \par Override
98  //! Not allowed
99  //! @attention None
100  //--------------------------------------------------------------------------
101 
103 
104  //!-------------------------------------------------------------------------
105  //! @brief Returns status error reset requests
106  //! @note None
107  //! @return BOOL - Error reset request status
108  //! @retval false - No error reset request present
109  //! @retval true - Error reset request present
110  //! \par Override
111  //! Not allowed
112  //! @attention None
113  //--------------------------------------------------------------------------
114 
116 
117  //----------------------------------------------------------------------------
118  // Protected defines, methods and variables
119  //----------------------------------------------------------------------------
120 
121  protected:
122 
123  //----------------------------------------------------------------------------
124  // Private defines, methods and variables
125  //----------------------------------------------------------------------------
126 
127  private:
128 
129  //! @brief Application error reset request status
131 
132 };
133 
134 //------------------------------------------------------------------------------
135 // Export application controller
136 //------------------------------------------------------------------------------
137 
139 
140 //------------------------------------------------------------------------------
141 // End of file
142 //------------------------------------------------------------------------------
TApplication_Controller object_Application_Controller
Definition: Application_Controller.cpp:62
ConOpSys data type definitions header file.
int BOOL
Boolean datatype definition.
Definition: Defines.h:124
void VOID
Datatypesess datatype definition.
Definition: Defines.h:105
Application controller class.
Definition: Application_Controller.h:54
VOID Clear_Error_Reset_Request()
Clear error reset request method.
Definition: Application_Controller.cpp:96
TApplication_Controller()
Class constructor method.
Definition: Application_Controller.cpp:68
VOID Set_Error_Reset_Request()
Set error reset request method.
Definition: Application_Controller.cpp:84
BOOL Is_Error_Reset_Request()
Returns status error reset requests.
Definition: Application_Controller.cpp:108
~TApplication_Controller()
Class destructor method.
Definition: Application_Controller.cpp:76
BOOL bool_Error_Reset_Request
Application error reset request status.
Definition: Application_Controller.h:130