blob: 12d6a68076be15bbd6af5d1c9596f093c52daf81 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 - 2011 Profactor GmbH, ACIN
*
* 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:
* Thomas Strasser, Alois Zoitl, Monika Wenger,
* Martin Melik Markumians
* - initial implementation and rework communication infrastructure
*******************************************************************************/
#ifndef _ANY_MAG_H_
#define _ANY_MAG_H_
#include "forte_any_elementary.h"
/*!\ingroup COREDTS CIEC_ANY_MAGNITUDE represents the magnitude data types according to
* IEC 61131.
*/
class CIEC_ANY_MAGNITUDE : public CIEC_ANY_ELEMENTARY{
DECLARE_FIRMWARE_DATATYPE(ANY_MAGNITUDE)
public:
virtual ~CIEC_ANY_MAGNITUDE(){
}
virtual EDataTypeID getDataTypeID() const{
return CIEC_ANY::e_ANY;
}
protected:
CIEC_ANY_MAGNITUDE(){
}
};
#endif /*_MANY_MAG_H_*/