-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSpecificData.h
35 lines (27 loc) · 1.44 KB
/
SpecificData.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/********************************************************************************
* Copyright (c) 2020 AVL List GmbH and others
*
* This program and the accompanying materials are made available under the
* terms of the Apache Software License 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
#ifndef MCX_READER_SSP_SPECIFIC_DATA_H
#define MCX_READER_SSP_SPECIFIC_DATA_H
#include "reader/ssp/Util.h"
#include "reader/model/components/ComponentInput.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
McxStatus SSDReadFmuData(xmlNodePtr componentNode, xmlNodePtr specificDataNode, ComponentInput * compInput);
McxStatus SSDReadIntegratorData(xmlNodePtr componentNode, xmlNodePtr specificDataNode, ComponentInput * compInput);
McxStatus SSDReadVectorIntegratorData(xmlNodePtr componentNode, xmlNodePtr specificDataNode, ComponentInput * compInput);
McxStatus SSDReadConstantData(xmlNodePtr componentNode, xmlNodePtr specificDataNode, ComponentInput * compInput);
McxStatus SSDCheckSourceEmpty(xmlNodePtr componentNode);
McxStatus SSDDefaultData(xmlNodePtr componentNode, ComponentInput * compInput);
McxStatus SSDDefaultFmuData(xmlNodePtr componentNode, ComponentInput * compInput);
#ifdef __cplusplus
} /* closing brace for extern "C" */
#endif /* __cplusplus */
#endif // !MCX_READER_SSP_SPECIFIC_DATA_H