]> gerrit.simantics Code Review - simantics/fmil.git/blobdiff - org.simantics.fmil.core/native/FMILibrary/src/Import/include/FMI1/fmi1_import_vendor_annotations.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_vendor_annotations.h
diff --git a/org.simantics.fmil.core/native/FMILibrary/src/Import/include/FMI1/fmi1_import_vendor_annotations.h b/org.simantics.fmil.core/native/FMILibrary/src/Import/include/FMI1/fmi1_import_vendor_annotations.h
new file mode 100644 (file)
index 0000000..ee85cb5
--- /dev/null
@@ -0,0 +1,81 @@
+/*
+    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>.
+*/
+
+/** \file fmi1_import_vendor_annotations.h
+*  \brief Public interface to the FMI XML C-library. Handling of vendor annotations.
+*/
+
+#ifndef FMI1_IMPORT_VENDORANNOTATIONS_H_
+#define FMI1_IMPORT_VENDORANNOTATIONS_H_
+
+#include <fmilib_config.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**\r
+* \addtogroup  fmi1_import\r
+* @{\r
+*      \addtogroup  fmi1_import_annotations Basic support for vendor annotations.\r
+*@}\r
+ * \addtogroup  fmi1_import_annotations Basic support for vendor annotations.\r
+ @{ \r
+ */
+
+/** \r
+\name Vendor annotation supporting structures\r
+*/\r
+/**@{ */\r
+       /** \brief  Opaque list of vendor annotations. */\r
+typedef struct fmi1_xml_vendor_list_t fmi1_import_vendor_list_t;\r
+       /** \brief Opaque vendor object. */\r
+typedef struct fmi1_xml_vendor_t fmi1_import_vendor_t;\r
+       /** \brief Opaque annotation object. */\r
+typedef struct fmi1_xml_annotation_t fmi1_import_annotation_t;\r
+/**@} */\r
+
+/** \brief Get the number of different vendors */
+FMILIB_EXPORT unsigned int  fmi1_import_get_number_of_vendors(fmi1_import_vendor_list_t*);
+
+/** \brief Get the annotations associated with vendor specified by the index */
+FMILIB_EXPORT fmi1_import_vendor_t* fmi1_import_get_vendor(fmi1_import_vendor_list_t*, unsigned int  index);
+
+/** \brief Get the vendor name */
+FMILIB_EXPORT const char* fmi1_import_get_vendor_name(fmi1_import_vendor_t*);
+
+/** \brief Get the number of annotations provided for the vendor */
+FMILIB_EXPORT unsigned int  fmi1_import_get_number_of_vendor_annotations(fmi1_import_vendor_t*);
+
+/** \brief Get an annotation object for the vendor by index
+
+       Note: Annotations may later be used in other places but have common interface name-value 
+*/
+FMILIB_EXPORT fmi1_import_annotation_t* fmi1_import_get_vendor_annotation(fmi1_import_vendor_t*, unsigned int  index);
+
+/** \brief Get the name of the annotation */
+FMILIB_EXPORT const char* fmi1_import_get_annotation_name(fmi1_import_annotation_t*);
+
+/** \brief Get the value for the annotation */
+FMILIB_EXPORT const char* fmi1_import_get_annotation_value(fmi1_import_annotation_t*);
+
+/** \brief Get the list of all the vendor annotations present in the XML file */
+FMILIB_EXPORT fmi1_import_vendor_list_t* fmi1_import_get_vendor_list(fmi1_import_t* fmu);
+
+/** @} */
+#ifdef __cplusplus
+}
+#endif
+#endif