| /******************************************************************************* |
| * Copyright (c) 2006 - 2011 ACIN, Profactor GmbH |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: |
| * Alois Zoitl, Rene Smodic, Gerhard Ebenhofer, Ingo Hegny |
| * - initial API and implementation and/or initial documentation |
| *******************************************************************************/ |
| #ifndef _E_PERMIT_H_ |
| #define _E_PERMIT_H_ |
| |
| #include <funcbloc.h> |
| |
| class E_PERMIT: public CFunctionBlock{ |
| DECLARE_FIRMWARE_FB(E_PERMIT) |
| |
| private: |
| static const CStringDictionary::TStringId scm_anDataInputNames[], scm_aunDIDataTypeIds[]; |
| |
| static const TEventID scm_nEventEIID = 0; |
| static const TForteInt16 scm_anEIWithIndexes[]; |
| static const TDataIOID scm_anEIWith[]; |
| static const CStringDictionary::TStringId scm_anEventInputNames[]; |
| |
| static const TEventID scm_nEventEOID = 0; |
| static const CStringDictionary::TStringId scm_anEventOutputNames[]; |
| |
| |
| virtual void executeEvent(int pa_nEIID); |
| |
| static const SFBInterfaceSpec scm_stFBInterfaceSpec; |
| |
| FORTE_FB_DATA_ARRAY(1,1,0, 0); |
| |
| CIEC_BOOL& PERMIT() { |
| return *static_cast<CIEC_BOOL*>(getDI(0)); |
| } |
| |
| public: |
| FUNCTION_BLOCK_CTOR(E_PERMIT) { |
| }; |
| virtual ~E_PERMIT(){}; |
| |
| }; |
| |
| #endif //_E_PERMIT_H_ |