| /******************************************************************************* |
| * 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: |
| * Rene Smodic, Alois Zoitl, Gerhard Ebenhofer, Ingo Hegny, |
| * Martin Melik Merkumians |
| * - initial API and implementation and/or initial documentation |
| *******************************************************************************/ |
| #ifndef GEN_SUBL_H_ |
| #define GEN_SUBL_H_ |
| |
| #include "GEN_SUBSCRIBE.h" |
| |
| /*! \brief Implementation of the SUBL SIFB. |
| * |
| */ |
| |
| class GEN_SUBL : public GEN_SUBSCRIBE{ |
| DECLARE_GENERIC_FIRMWARE_FB(GEN_SUBL) |
| public: |
| GEN_SUBL(const CStringDictionary::TStringId pa_nInstanceNameId, CResource *pa_poSrcRes); |
| |
| virtual bool configureFB(const char *pa_acConfigString); |
| |
| protected: |
| static const char * const scmLocalIDPrefix; |
| static const char * const scmLocalIDSuffix; |
| |
| private: |
| virtual char * getDefaultIDString(const char *paID); |
| }; |
| |
| #endif /*GEN_SUBL_H_*/ |