Add enum constant RECOMPUTE_SOME=3: some duration values have to be recomputed

at runtime (to determine time steps).
This commit is contained in:
Gerhard Hoffmann 2024-08-15 21:20:18 +02:00
parent 964ee17540
commit 26a50fb972

View File

@ -6,7 +6,7 @@
#include <QDebugStateSaver>
struct ATBTimeStepConfig {
enum class TimeStepConfig {STATIC=1, DYNAMIC=2};
enum class TimeStepConfig {STATIC=1, DYNAMIC=2, RECOMPUTE_SOME=3};
ATBTimeStepConfig() = default;
int tsconfig_id;