]> gerrit.simantics Code Review - simantics/fmil.git/blobdiff - org.simantics.fmil.core/native/FMILibrary/src/XML/src/FMI2/fmi2_xml_unit_impl.h
Add FMILibrary-2.0.3 to org.simantics.fmil.core\native.
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / src / XML / src / FMI2 / fmi2_xml_unit_impl.h
diff --git a/org.simantics.fmil.core/native/FMILibrary/src/XML/src/FMI2/fmi2_xml_unit_impl.h b/org.simantics.fmil.core/native/FMILibrary/src/XML/src/FMI2/fmi2_xml_unit_impl.h
new file mode 100644 (file)
index 0000000..8a92cbd
--- /dev/null
@@ -0,0 +1,55 @@
+/*
+    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 FMI2_XML_UNITIMPL_H
+#define FMI2_XML_UNITIMPL_H
+
+#include <JM/jm_vector.h>
+#include <JM/jm_named_ptr.h>
+#include "FMI2/fmi2_xml_model_description.h"
+#include "fmi2_xml_parser.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* Structure encapsulating base unit information */
+
+struct fmi2_xml_display_unit_t {
+    double factor;
+    double offset;
+    fmi2_xml_unit_t* baseUnit;
+    char displayUnit[1];
+};
+
+struct fmi2_xml_unit_t {
+        jm_vector(jm_voidp) displayUnits;
+               int SI_base_unit_exp[fmi2_SI_base_units_Num];
+               double factor;
+               double offset;
+        fmi2_xml_display_unit_t defaultDisplay;
+        char baseUnit[1];
+};
+
+struct fmi2_xml_unit_definitions_t {
+    jm_vector(jm_named_ptr) definitions;
+};
+
+fmi2_xml_display_unit_t* fmi2_xml_get_parsed_unit(fmi2_xml_parser_context_t *context, jm_vector(char)* name, int sorted);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* FMI2_XML_UNITIMPL_H */