]> gerrit.simantics Code Review - simantics/fmil.git/blob - org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI1/fmi1_import_variable_list_impl.h
331bc68a274d742fabfc5ba1be6fb6df374db7eb
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / src / Import / src / FMI1 / fmi1_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 FMI1_IMPORT_VARIABLELISTIMPL_H
17 #define FMI1_IMPORT_VARIABLELISTIMPL_H
18
19 #include <JM/jm_vector.h>
20 #include <FMI1/fmi1_import.h>
21 #include <FMI1/fmi1_import_variable_list.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 struct fmi1_import_variable_list_t {
28         fmi1_import_t* fmu;
29     jm_vector(jm_voidp) variables;
30     fmi1_value_reference_t* vr;
31 };
32
33 #ifdef __cplusplus
34 }
35 #endif
36
37 #endif /* FMI1_XML_VARIABLELISTIMPL_H */