001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.projection.proj;
003
004/**
005 * Factory class that provides a Proj instance.
006 */
007public interface ProjFactory {
008    Proj createInstance();
009}