com.carrotsearch.hppc.generator.OutputFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hppc-template-processor Show documentation
Show all versions of hppc-template-processor Show documentation
Template Processor and Code Generation for HPPC.
The newest version!
package com.carrotsearch.hppc.generator;
import java.nio.file.Path;
class OutputFile {
public final Path path;
public boolean upToDate;
public OutputFile(Path target) {
this.path = target.toAbsolutePath().normalize();
}
}