-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVacuumGuageStateMachine.cpp
125 lines (107 loc) · 4.47 KB
/
VacuumGuageStateMachine.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*----- PROTECTED REGION ID(VacuumGuageStateMachine.cpp) ENABLED START -----*/
static const char *RcsId = "$Id: $";
//=============================================================================
//
// file : VacuumGuageStateMachine.cpp
//
// description : State machine file for the VacuumGuage class
//
// project : Prevac training
//
// This file is part of Tango device class.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Tango is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Tango. If not, see <http://www.gnu.org/licenses/>.
//
// $Author: $
//
// $Revision: $
// $Date: $
//
// $HeadURL: $
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include <VacuumGuage.h>
/*----- PROTECTED REGION END -----*/ // VacuumGuage::VacuumGuageStateMachine.cpp
//================================================================
// States | Description
//================================================================
// ON | The guage is On
// OFF | The guage is off
namespace VacuumGuage_ns
{
//=================================================
// Attributes Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : VacuumGuage::is_Pressure_allowed()
* Description : Execution allowed for Pressure attribute
*/
//--------------------------------------------------------
bool VacuumGuage::is_Pressure_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Pressure attribute in read access.
/*----- PROTECTED REGION ID(VacuumGuage::PressureStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // VacuumGuage::PressureStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : VacuumGuage::is_SimulatedPressureValue_allowed()
* Description : Execution allowed for SimulatedPressureValue attribute
*/
//--------------------------------------------------------
bool VacuumGuage::is_SimulatedPressureValue_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for SimulatedPressureValue attribute in Write access.
/*----- PROTECTED REGION ID(VacuumGuage::SimulatedPressureValueStateAllowed_WRITE) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // VacuumGuage::SimulatedPressureValueStateAllowed_WRITE
// Not any excluded states for SimulatedPressureValue attribute in read access.
/*----- PROTECTED REGION ID(VacuumGuage::SimulatedPressureValueStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // VacuumGuage::SimulatedPressureValueStateAllowed_READ
return true;
}
//=================================================
// Commands Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : VacuumGuage::is_On_allowed()
* Description : Execution allowed for On attribute
*/
//--------------------------------------------------------
bool VacuumGuage::is_On_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for On command.
/*----- PROTECTED REGION ID(VacuumGuage::OnStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // VacuumGuage::OnStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : VacuumGuage::is_Off_allowed()
* Description : Execution allowed for Off attribute
*/
//--------------------------------------------------------
bool VacuumGuage::is_Off_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Off command.
/*----- PROTECTED REGION ID(VacuumGuage::OffStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // VacuumGuage::OffStateAllowed
return true;
}
} // End of namespace