package org.herac.tuxguitar.io.base; import org.herac.tuxguitar.song.models.TGSong; public interface TGRawExporter { public void exportSong(TGSong song) throws TGFileFormatException; public String getExportName(); }