ConOpSys V2970  P004.07
ANVILEX control operating system
Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 //! @file Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS.h
3 //! @brief Communication link COM3 MODBUS slave address parameter object header file.
4 //! @copyright ANVILEX LLC
5 //! @attention No special attention requered.
6 //! $HeadURL: https://192.168.3.4:8443/svn/P004_07/ConOpSys/Parameters/Communication/Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS.h $
7 //! $Revision: 2162 $
8 //! $Date: 2020-11-03 02:41:15 +0500 (Di, 03 Nov 2020) $
9 //! $Author: minch $
10 //
11 // Copyright(C) 2015-2020 ANVILEX LLC
12 //
13 // Redistribution and use in source and binary forms, with or without
14 // modification, are permitted provided that the following conditions are met:
15 //
16 // 1. Redistributions of source code must retain the above copyright notice,
17 // this list of conditions and the following disclaimer.
18 //
19 // 2. Redistributions in binary form must reproduce the above copyright notice,
20 // this list of conditions and the following disclaimer in the documentation
21 // and/or other materials provided with the distribution.
22 //
23 // 3. Neither the name of ANVILEX nor the names of its contributors may be
24 // used to endorse or promote products derived from this software without
25 // specific prior written permission.
26 //
27 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
31 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 // POSSIBILITY OF SUCH DAMAGE.
38 //
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 COM3 MODBUS slave address parameter 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 None
84  //! \par Override
85  //! Not allowed
86  //! @attention Don't call this method directly.
87  //--------------------------------------------------------------------------
88 
89  virtual BOOL Init();
90 
91  //!-------------------------------------------------------------------------
92  //! @brief Parameter post write data processing method.
93  //! @note None
94  //! @return None
95  //! \par Override
96  //! Not allowed
97  //! @attention Don't call this method directly.
98  //--------------------------------------------------------------------------
99 
101 
102  //----------------------------------------------------------------------------
103  // Protected defines, methods and variables
104  //----------------------------------------------------------------------------
105 
106  protected:
107 
108  //----------------------------------------------------------------------------
109  // Private defines, methods and variables
110  //----------------------------------------------------------------------------
111 
112  private:
113 
114 };
115 
116 //------------------------------------------------------------------------------
117 // Export references to the parameter objects
118 //------------------------------------------------------------------------------
119 
121 
122 //------------------------------------------------------------------------------
123 // End Of File
124 //------------------------------------------------------------------------------
int BOOL
Boolean datatype definition.
Definition: Defines.h:124
ConOpSys parameter base class header file.
TParameter_COMMUNICATION_COM3_MODBUS_ADDRESS object_Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS
Definition: Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS.cpp:69
Parameter base class.
Definition: Parameter_Base.h:60
COM3 MODBUS slave address parameter class.
Definition: Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS.h:72
virtual BOOL Init()
Parameter initialisation method.
Definition: Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS.cpp:103
virtual BOOL Post_Write_Data_Processing()
Parameter post write data processing method.
Definition: Parameter_COMMUNICATION_COM3_MODBUS_ADDRESS.cpp:129