blob: 583b7062cad6fb3317be05613fdb5b3627dcf765 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 - 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, Gerhard Ebenhofer, Ingo Hegny
* - initial API and implementation and/or initial documentation
*******************************************************************************/
#ifndef _E_RS_H_
#define _E_RS_H_
#include <funcbloc.h>
class E_RS: public CFunctionBlock{
DECLARE_FIRMWARE_FB(E_RS)
private:
static const CStringDictionary::TStringId scm_anDataOutputNames[], scm_aunDODataTypeIds[];
static const TEventID scm_nEventRID = 0;
static const TEventID scm_nEventSID = 1;
static const CStringDictionary::TStringId scm_anEventInputNames[];
static const TEventID scm_nEventEOID = 0;
static const TForteInt16 scm_anEOWithIndexes[];
static const TDataIOID scm_anEOWith[];
static const CStringDictionary::TStringId scm_anEventOutputNames[];
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_RS){
};
virtual ~E_RS() {};
};
#endif //_E_RS_H_