FMI Library: part of JModelica.org
fmi2_import_variable_list.h
Go to the documentation of this file.
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 
17 
22 #ifndef FMI2_IMPORT_VARIABLELIST_H_
23 #define FMI2_IMPORT_VARIABLELIST_H_
24 
25  #include "fmi2_import_variable.h"
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
47 
52 
57 
60 
63 
66 
77 
82 
90 
97 
98 
105 
112 
127 #ifdef __cplusplus
128 }
129 #endif
130 #endif
FMILIB_EXPORT size_t fmi2_import_get_variable_list_size(fmi2_import_variable_list_t *vl)
Get number of variables in a list.
FMILIB_EXPORT fmi2_import_variable_list_t * fmi2_import_filter_variables(fmi2_import_variable_list_t *vl, fmi2_import_variable_filter_function_ft filter, void *context)
Call the provided &#39;filter&#39; function on every variable in the list and create a new list...
FMILIB_EXPORT fmi2_import_variable_list_t * fmi2_import_join_var_list(fmi2_import_variable_list_t *a, fmi2_import_variable_list_t *b)
Create a new variable list by concatenating two lists.
fmi2_import_variable_list_t * fmi2_import_alloc_variable_list(fmi2_import_t *fmu, size_t size)
Allocate an empty list.
struct fmi2_import_variable_list_t fmi2_import_variable_list_t
List of variables.
FMILIB_EXPORT jm_status_enu_t fmi2_import_var_list_push_back(fmi2_import_variable_list_t *vl, fmi2_import_variable_t *v)
Add a variable to a variable list.
v size
return v
Public interface to the FMI import C-library. Handling of model variables.
FMILIB_EXPORT fmi2_import_variable_list_t * fmi2_import_get_sublist(fmi2_import_variable_list_t *vl, size_t fromIndex, size_t toIndex)
Select sub-lists.
#define FMILIB_EXPORT
Used to declare the public API of the library needed for dynamic linking.
fmi1_capi_t * fmu
struct fmi2_xml_variable_t fmi2_import_variable_t
General variable type.
FMILIB_EXPORT fmi2_import_variable_list_t * fmi2_import_append_to_var_list(fmi2_import_variable_list_t *vl, fmi2_import_variable_t *v)
Append a variable to the variable list.
FMILIB_EXPORT void fmi2_import_free_variable_list(fmi2_import_variable_list_t *vl)
Free a variable list. Note that variable lists are allocated dynamically and must be freed when not n...
FMILIB_EXPORT fmi2_import_variable_list_t * fmi2_import_clone_variable_list(fmi2_import_variable_list_t *vl)
Make a copy of the list.
int(* fmi2_import_variable_filter_function_ft)(fmi2_import_variable_t *vl, void *data)
Callback function typedef for the fmiFilterVariables.
FMILIB_EXPORT fmi2_import_variable_list_t * fmi2_import_prepend_to_var_list(fmi2_import_variable_list_t *vl, fmi2_import_variable_t *v)
Prepend a variable to the variable list.
FMILIB_EXPORT const fmi2_value_reference_t * fmi2_import_get_value_referece_list(fmi2_import_variable_list_t *vl)
Get a pointer to the list of the value references for all the variables.
FMILIB_EXPORT fmi2_import_variable_t * fmi2_import_get_variable(fmi2_import_variable_list_t *vl, size_t index)
Get a single variable from the list.
jm_status_enu_t
Return status codes.
Definition: jm_types.h:44
struct fmi2_import_t fmi2_import_t
FMU version 2.0 object.