]> gerrit.simantics Code Review - simantics/fmil.git/blob - org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI2/fmi2_import_variable_list_impl.h
Add FMILibrary-2.0.3 to org.simantics.fmil.core\native.
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / src / Import / src / FMI2 / fmi2_import_variable_list_impl.h
1 /*
2     Copyright (C) 2012 Modelon AB
3
4     This program is free software: you can redistribute it and/or modify
5     it under the terms of the BSD style license.
6
7      This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10     FMILIB_License.txt file for more details.
11
12     You should have received a copy of the FMILIB_License.txt file
13     along with this program. If not, contact Modelon AB <http://www.modelon.com>.
14 */
15
16 #ifndef FMI2_IMPORT_VARIABLELISTIMPL_H
17 #define FMI2_IMPORT_VARIABLELISTIMPL_H
18
19 #include <JM/jm_vector.h>
20 #include <FMI2/fmi2_import.h>
21 #include <FMI2/fmi2_import_variable_list.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 struct fmi2_import_variable_list_t {
28         fmi2_import_t* fmu;
29     jm_vector(jm_voidp) variables;
30     fmi2_value_reference_t* vr;
31 };
32
33 #ifdef __cplusplus
34 }
35 #endif
36
37 #endif /* FMI2_XML_VARIABLELISTIMPL_H */