]> gerrit.simantics Code Review - simantics/fmil.git/blobdiff - org.simantics.fmil.core/native/FMILibrary/src/Import/include/FMI1/fmi1_import_capabilities.h
Add FMILibrary-2.0.3 to org.simantics.fmil.core\native.
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / src / Import / include / FMI1 / fmi1_import_capabilities.h
diff --git a/org.simantics.fmil.core/native/FMILibrary/src/Import/include/FMI1/fmi1_import_capabilities.h b/org.simantics.fmil.core/native/FMILibrary/src/Import/include/FMI1/fmi1_import_capabilities.h
new file mode 100644 (file)
index 0000000..be1f11c
--- /dev/null
@@ -0,0 +1,70 @@
+/*
+    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 <http://www.modelon.com>.
+*/
+
+#ifndef FMI1_IMPORT_CAPABILITIES_H
+#define FMI1_IMPORT_CAPABILITIES_H
+\r
+#include <fmilib_config.h>\r
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+       /**
+               \file fmi1_import_capabilities.h
+               Functions to retrieve capability flags.
+       */
+       /**
+       \addtogroup fmi1_import
+       @{
+       \addtogroup fmi1_import_capabilities Functions to retrieve capability flags.
+       The functions accept a pointer to ::fmi1_import_capabilities_t returned by fmi1_import_get_capabilities().
+       They return the flags as specified by the FMI 1.0 standard. Default values are returned for model-exachange FMUs.
+       @}
+       \addtogroup fmi1_import_capabilities
+       @{
+       */
+/**\name FMU capabilities flags */\r
+/**@{ */\r
+/** \brief A container for all the capability flags */\r
+typedef struct fmi1_xml_capabilities_t fmi1_import_capabilities_t;\r
+/** @} */\r
+
+       /** \brief Retrieve  canHandleVariableCommunicationStepSize flag. */
+FMILIB_EXPORT int fmi1_import_get_canHandleVariableCommunicationStepSize(fmi1_import_capabilities_t* );
+       /** \brief Retrieve  canHandleEvents flag. */
+FMILIB_EXPORT int fmi1_import_get_canHandleEvents(fmi1_import_capabilities_t* );
+       /** \brief Retrieve  canRejectSteps flag. */
+FMILIB_EXPORT int fmi1_import_get_canRejectSteps(fmi1_import_capabilities_t* );
+       /** \brief Retrieve  canInterpolateInputs flag. */
+FMILIB_EXPORT int fmi1_import_get_canInterpolateInputs(fmi1_import_capabilities_t* );
+       /** \brief Retrieve  maxOutputDerivativeOrder. */
+FMILIB_EXPORT unsigned int fmi1_import_get_maxOutputDerivativeOrder(fmi1_import_capabilities_t* );
+       /** \brief Retrieve  canRunAsynchronuously flag. */
+FMILIB_EXPORT int fmi1_import_get_canRunAsynchronuously(fmi1_import_capabilities_t* );
+       /** \brief Deprecated since 1.0.1, do not use. */
+FMILIB_EXPORT int fmi1_import_get_canSignalEvents(fmi1_import_capabilities_t* );
+       /** \brief Retrieve  canBeInstantiatedOnlyOncePerProcess flag. */
+FMILIB_EXPORT int fmi1_import_get_canBeInstantiatedOnlyOncePerProcess(fmi1_import_capabilities_t* );
+       /** \brief Retrieve  canNotUseMemoryManagementFunctions flag. */
+FMILIB_EXPORT int fmi1_import_get_canNotUseMemoryManagementFunctions(fmi1_import_capabilities_t* );
+/** 
+@}
+*/
+
+#ifdef __cplusplus
+}
+#endif
+#endif /* FMI1_IMPORT_CAPABILITIES_H */