blob: 29168e8b8f37b0a29b1a3614a53d8dd70eb90b31 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 - 2011 ACIN, Profactor GmbH
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Alois Zoitl, Thomas Strasser, Rene Smodic, Gerhard Ebenhofer,
* Ingo Hegny
* - initial API and implementation and/or initial documentation
*******************************************************************************/
#ifndef _E_SR_H_
#define _E_SR_H_
#include <funcbloc.h>
class E_SR: public CFunctionBlock{
DECLARE_FIRMWARE_FB(E_SR)
private:
static const CStringDictionary::TStringId scm_aunDataOutputNameIds[];
static const CStringDictionary::TStringId scm_aunDataOutputDataTypeIds[];
static const TEventID scm_nEventSID = 0;
static const TEventID scm_nEventRID = 1;
static const CStringDictionary::TStringId scm_aunEventInputNameIds[];
static const TEventID scm_nEventEOID = 0;
static const TForteInt16 scm_anEOWithIndexes[];
static const TDataIOID scm_anEOWith[];
static const CStringDictionary::TStringId scm_aunEventOutputNameIds[];
virtual void executeEvent(int pa_nEIID);
static const SFBInterfaceSpec scm_stFBInterfaceSpec;
FORTE_FB_DATA_ARRAY(1,0,1, 0);
CIEC_BOOL& Q() {
return *static_cast<CIEC_BOOL*>(getDO(0));
}
public:
FUNCTION_BLOCK_CTOR(E_SR){
};
virtual ~E_SR(){ };
};
#endif //_E_SR_H_