us.ihmc.simulationconstructionset.commands.WriteDataCommandExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simulation-construction-set
Show all versions of simulation-construction-set
Simulation Construction Set
package us.ihmc.simulationconstructionset.commands;
import java.io.File;
import java.util.List;
import us.ihmc.yoVariables.variable.YoVariable;
public interface WriteDataCommandExecutor
{
public abstract void writeData(List vars, boolean binary, boolean compress, File chosenFile);
}