We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81d9e9c commit 2051034Copy full SHA for 2051034
1 file changed
examples/ExternalInterfaceLib/external_interface_lib.cpp
@@ -10,7 +10,8 @@ class ExternalInterfaceLib : public fmu4cpp::fmu_base {
10
public:
11
FMU4CPP_CTOR(ExternalInterfaceLib) {
12
13
- register_variable(string("jsonString_", &jsonString_));
+ register_variable(string("jsonString_", &jsonString_)
14
+ .setCausality(fmu4cpp::causality_t::LOCAL));
15
16
ExternalInterfaceLib::reset();
17
}
0 commit comments