BE_GRAPHE/src/main/org/insa/graph/io/GraphReader.java
2018-02-24 15:14:37 +01:00

18 lines
280 B
Java

package org.insa.graph.io;
import java.io.IOException;
import org.insa.graph.Graph;
public interface GraphReader {
/**
* Read a graph an returns it.
*
* @return Graph.
* @throws Exception
*
*/
public Graph read() throws IOException;
}