void setup_filename(const x0::FlowParams& args, x0::FlowValue& result) { if (args.empty()) { result.set(filename_.c_str()); return; } args[0].load(filename_); checkStart(); }
void setup_step(const x0::FlowParams& args, x0::FlowValue& result) { if (args.empty()) { result.set(step_); return; } args[0].load(step_); if (step_) evTimer_.set(step_, step_); checkStart(); }