]> gerrit.simantics Code Review - simantics/fmil.git/blobdiff - org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI1/fmi1_import_vendor_annotations.c
Add FMILibrary-2.0.3 to org.simantics.fmil.core\native.
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / src / Import / src / FMI1 / fmi1_import_vendor_annotations.c
diff --git a/org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI1/fmi1_import_vendor_annotations.c b/org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI1/fmi1_import_vendor_annotations.c
new file mode 100644 (file)
index 0000000..f8e3526
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+    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>.
+*/
+
+#include <string.h>
+
+#include "fmi1_import_impl.h"
+
+const char* fmi1_import_get_vendor_name(fmi1_import_vendor_t* v) {
+       return fmi1_xml_get_vendor_name(v);
+}
+
+unsigned int  fmi1_import_get_number_of_vendor_annotations(fmi1_import_vendor_t* v) {
+    return fmi1_xml_get_number_of_vendor_annotations(v);
+}
+
+fmi1_import_annotation_t* fmi1_import_get_vendor_annotation(fmi1_import_vendor_t* v, unsigned int  index) {
+       return fmi1_xml_get_vendor_annotation(v, index);
+}
+
+const char* fmi1_import_get_annotation_name(fmi1_import_annotation_t* a) {
+       return fmi1_xml_get_annotation_name(a);
+}
+
+const char* fmi1_import_get_annotation_value(fmi1_import_annotation_t* a) {
+       return fmi1_xml_get_annotation_value(a);
+}