ConOpSys V2970  P004.07
ANVILEX control operating system
System_DAC_Base.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 //! @file System_DAC_Base.h
3 //! @brief System DAC base 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/System_DAC_Base.h $
7 //! $Revision: 2076 $
8 //! $Date: 2020-09-12 20:30:44 +0500 (Sa, 12 Sep 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 definitions
50 //------------------------------------------------------------------------------
51 
52 //! @brief System DAC class
54 {
55 
56  //----------------------------------------------------------------------------
57  // Public defines, methods and variables
58  //----------------------------------------------------------------------------
59 
60  public:
61 
62  //!-------------------------------------------------------------------------
63  //! @brief Base 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 Base class constructor method.
74  //! @note None
75  //! \par Override
76  //! Not allowed
77  //! @attention Don't call this method directly.
78  //--------------------------------------------------------------------------
79 
81 
82  //!-------------------------------------------------------------------------
83  //! @brief System DAC object initialisation method.
84  //! @note None
85  //! @return None
86  //! \par Override
87  //! Optional
88  //! @attention None
89  //--------------------------------------------------------------------------
90 
91  VOID Init();
92 
93  //!-------------------------------------------------------------------------
94  //! @brief System DAC object finalisation method.
95  //! @note None
96  //! @return None
97  //! \par Override
98  //! Optional
99  //! @attention None
100  //--------------------------------------------------------------------------
101 
102  VOID Done();
103 
104  //!-------------------------------------------------------------------------
105  //! @brief System DAC execute method.
106  //! @note None
107  //! @return None
108  //! \par Override
109  //! Optional
110  //! @attention None
111  //--------------------------------------------------------------------------
112 
113  VOID Execute();
114 
115  //----------------------------------------------------------------------------
116  // Protected defines, methods and variables
117  //----------------------------------------------------------------------------
118 
119  protected:
120 
121  //----------------------------------------------------------------------------
122  // Private defines, methods and variables
123  //----------------------------------------------------------------------------
124 
125  private:
126 
127 };
128 
129 //------------------------------------------------------------------------------
130 // End Of File
131 //------------------------------------------------------------------------------
ConOpSys data type definitions header file.
void VOID
Datatypesess datatype definition.
Definition: Defines.h:105
System DAC class.
Definition: System_DAC_Base.h:54
VOID Execute()
System DAC execute method.
Definition: System_DAC_Base.cpp:96
~TSystem_DAC_Base()
Base class constructor method.
Definition: System_DAC_Base.cpp:72
TSystem_DAC_Base()
Base class constructor method.
Definition: System_DAC_Base.cpp:64
VOID Init()
System DAC object initialisation method.
Definition: System_DAC_Base.cpp:80
VOID Done()
System DAC object finalisation method.
Definition: System_DAC_Base.cpp:88