ConOpSys V2970  P004.07
ANVILEX control operating system
Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 //! @file Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME.h
3 //! @brief object header file.
4 //! @note Automatic generated file.
5 //! @copyright ANVILEX LLC
6 //! @attention No special attention requered.
7 //! $HeadURL: $
8 //! $Revision: $
9 //! $Date: $
10 //! $Author: $
11 //
12 // Copyright(C) 2020 ANVILEX LLC
13 //
14 // Redistribution and use in source and binary forms, with or without
15 // modification, are permitted provided that the following conditions are met:
16 //
17 // 1. Redistributions of source code must retain the above copyright notice,
18 // this list of conditions and the following disclaimer.
19 //
20 // 2. Redistributions in binary form must reproduce the above copyright notice,
21 // this list of conditions and the following disclaimer in the documentation
22 // and/or other materials provided with the distribution.
23 //
24 // 3. Neither the name of ANVILEX nor the names of its contributors may be
25 // used to endorse or promote products derived from this software without
26 // specific prior written permission.
27 //
28 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
32 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 // POSSIBILITY OF SUCH DAMAGE.
39 //
40 //------------------------------------------------------------------------------
41 
42 //------------------------------------------------------------------------------
43 // Protecting header files from mutual, recursive inclusion.
44 //------------------------------------------------------------------------------
45 
46 #pragma once
47 
48 //------------------------------------------------------------------------------
49 // Include standard libraries header files
50 //------------------------------------------------------------------------------
51 
52 //------------------------------------------------------------------------------
53 // Include thrid party header files
54 //------------------------------------------------------------------------------
55 
56 //------------------------------------------------------------------------------
57 // Include ConOpSys header files
58 //------------------------------------------------------------------------------
59 
60 #include "Parameter_Base.h"
61 
62 //------------------------------------------------------------------------------
63 // Macros
64 //------------------------------------------------------------------------------
65 
66 //------------------------------------------------------------------------------
67 // Class definitions
68 //------------------------------------------------------------------------------
69 
70 //! @brief class
72 {
73 
74  //----------------------------------------------------------------------------
75  // Public defines, methods and variables
76  //----------------------------------------------------------------------------
77 
78  public:
79 
80  //!-------------------------------------------------------------------------
81  //! @brief Parameter initialisation method.
82  //! @note None
83  //! @return BOOL - Initialisation status
84  //! @retval true - Initialisation successed
85  //! @retval false - Initialisation failed
86  //! \par Override
87  //! Not allowed
88  //! @attention Don't call this method directly.
89  //--------------------------------------------------------------------------
90 
91  virtual BOOL Init();
92 
93  //!-------------------------------------------------------------------------
94  //! @brief Parameter post write data processing method.
95  //! @note None
96  //! @return BOOL - Post write data processing status
97  //! @retval true - Post write data processing successed
98  //! @retval false - Post write data processing failed
99  //! \par Override
100  //! Not allowed
101  //! @attention Don't call this method directly.
102  //--------------------------------------------------------------------------
103 
105 
106  //!-------------------------------------------------------------------------
107  //! @brief Parameter pre read data processing method.
108  //! @note None
109  //! @return BOOL - Pre read data processing status
110  //! @retval true - Pre read data processing successed
111  //! @retval false - Pre read data processing failed
112  //! \par Override
113  //! Not allowed
114  //! @attention Don't call this method directly.
115  //--------------------------------------------------------------------------
116 
117  virtual BOOL Pre_Read_Data_Processing();
118 
119  //----------------------------------------------------------------------------
120  // Protected defines, methods and variables
121  //----------------------------------------------------------------------------
122 
123  protected:
124 
125  //----------------------------------------------------------------------------
126  // Private defines, methods and variables
127  //----------------------------------------------------------------------------
128 
129  private:
130 
131 };
132 
133 //------------------------------------------------------------------------------
134 // Export references to the parameter objects
135 //------------------------------------------------------------------------------
136 
138 
139 //------------------------------------------------------------------------------
140 // End Of File
141 //------------------------------------------------------------------------------
142 
int BOOL
Boolean datatype definition.
Definition: Defines.h:124
ConOpSys parameter base class header file.
TParameter_CAN_OPEN_TPDO2_INHIBIT_TIME object_Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME
Definition: Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME.cpp:70
Parameter base class.
Definition: Parameter_Base.h:60
class
Definition: Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME.h:72
virtual BOOL Pre_Read_Data_Processing()
Parameter pre read data processing method.
Definition: Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME.cpp:163
virtual BOOL Post_Write_Data_Processing()
Parameter post write data processing method.
Definition: Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME.cpp:130
virtual BOOL Init()
Parameter initialisation method.
Definition: Parameter_CAN_OPEN_TPDO2_INHIBIT_TIME.cpp:104