/* Copyright (C) 2012 Modelon AB This program is free software: you can redistribute it and/or modify it under the terms of the BSD style license. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the FMILIB_License.txt file for more details. You should have received a copy of the FMILIB_License.txt file along with this program. If not, contact Modelon AB . */ #include "fmi1_import_impl.h" int fmi1_import_get_canHandleVariableCommunicationStepSize(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canHandleVariableCommunicationStepSize(c); } int fmi1_import_get_canHandleEvents(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canHandleEvents(c); } int fmi1_import_get_canRejectSteps(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canRejectSteps( c ); } int fmi1_import_get_canInterpolateInputs(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canInterpolateInputs(c); } unsigned int fmi1_import_get_maxOutputDerivativeOrder(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_maxOutputDerivativeOrder(c); } int fmi1_import_get_canRunAsynchronuously(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canRunAsynchronuously(c); } int fmi1_import_get_canSignalEvents(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canSignalEvents(c); } int fmi1_import_get_canBeInstantiatedOnlyOncePerProcess(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canBeInstantiatedOnlyOncePerProcess(c); } int fmi1_import_get_canNotUseMemoryManagementFunctions(fmi1_import_capabilities_t* c ) { return fmi1_xml_get_canNotUseMemoryManagementFunctions(c); }