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 126 127 128 129 130 131 132 133 134 135 136 137
|
/*----- PROTECTED REGION ID(IfchangeServerStateMachine.cpp) ENABLED START -----*/
static const char *RcsId = "$Id: $";
//=============================================================================
//
// file : IfchangeServerStateMachine.cpp
//
// description : State machine file for the IfchangeServer class
//
// project :
//
// 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 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 General Public License for more details.
//
// You should have received a copy of the GNU 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 <IfchangeServer.h>
/*----- PROTECTED REGION END -----*/ // IfchangeServer::IfchangeServerStateMachine.cpp
//================================================================
// States | Description
//================================================================
namespace IfchangeServer_ns
{
//=================================================
// Attributes Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : IfchangeServer::is_busy_allowed()
* Description : Execution allowed for busy attribute
*/
//--------------------------------------------------------
bool IfchangeServer::is_busy_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for busy attribute in read access.
/*----- PROTECTED REGION ID(IfchangeServer::busyStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // IfchangeServer::busyStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : IfchangeServer::is_ioattr_allowed()
* Description : Execution allowed for ioattr attribute
*/
//--------------------------------------------------------
bool IfchangeServer::is_ioattr_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for ioattr attribute in read access.
/*----- PROTECTED REGION ID(IfchangeServer::ioattrStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // IfchangeServer::ioattrStateAllowed_READ
return true;
}
//=================================================
// Commands Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : IfchangeServer::is_Add_dynamic_allowed()
* Description : Execution allowed for Add_dynamic attribute
*/
//--------------------------------------------------------
bool IfchangeServer::is_Add_dynamic_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Add_dynamic command.
/*----- PROTECTED REGION ID(IfchangeServer::Add_dynamicStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // IfchangeServer::Add_dynamicStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : IfchangeServer::is_Delete_Dynamic_allowed()
* Description : Execution allowed for Delete_Dynamic attribute
*/
//--------------------------------------------------------
bool IfchangeServer::is_Delete_Dynamic_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Delete_Dynamic command.
/*----- PROTECTED REGION ID(IfchangeServer::Delete_DynamicStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // IfchangeServer::Delete_DynamicStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : IfchangeServer::is_iocmd_allowed()
* Description : Execution allowed for iocmd attribute
*/
//--------------------------------------------------------
bool IfchangeServer::is_iocmd_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for iocmd command.
/*----- PROTECTED REGION ID(IfchangeServer::iocmdStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // IfchangeServer::iocmdStateAllowed
return true;
}
/*----- PROTECTED REGION ID(IfchangeServer::IfchangeServerStateAllowed.AdditionalMethods) ENABLED START -----*/
// Additional Methods
/*----- PROTECTED REGION END -----*/ // IfchangeServer::IfchangeServerStateAllowed.AdditionalMethods
} // namespace IfchangeServer_ns
|