9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-02 22:02:23 +00:00

Conversion support for EWG and Schematics

This commit is contained in:
Daniel Mills
2020-10-26 05:11:15 -04:00
parent a33cd35ae8
commit b875a4898b
8 changed files with 240 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
package com.volmit.iris.util;
import java.io.File;
public interface Converter
{
public String getInExtension();
public String getOutExtension();
public void convert(File in, File out);
}