-
Notifications
You must be signed in to change notification settings - Fork 17
/
IntegratorInput.c
32 lines (25 loc) · 982 Bytes
/
IntegratorInput.c
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
/********************************************************************************
* 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
********************************************************************************/
#include "reader/model/components/specific_data/IntegratorInput.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
static void IntegratorInputDestructor(IntegratorInput * input) {
}
static IntegratorInput * IntegratorInputCreate(IntegratorInput * input) {
OPTIONAL_UNSET(input->gain);
OPTIONAL_UNSET(input->numSubSteps);
OPTIONAL_UNSET(input->initialState);
return input;
}
OBJECT_CLASS(IntegratorInput, ComponentInput);
#ifdef __cplusplus
} /* closing brace for extern "C" */
#endif /* __cplusplus */