void SimpleTaskProgress::update(const ofx::TaskProgressEventArgs& args) { taskId = args.getTaskId(); name = args.getTaskName(); state = args.getState(); progress = args.getProgress(); }
void FileImporter::onTaskProgress(const ofx::TaskProgressEventArgs& args){ ofScopedLock sl(mutex); taskProgress[args.getTaskId()] = args.getProgress(); updateProgress(); }