// Copyright 2002, FreeHEP. package org.freehep.graphicsio.emf.gdi; import java.io.IOException; import org.freehep.graphicsio.emf.EMFInputStream; import org.freehep.graphicsio.emf.EMFTag; /** * FlattenPath TAG. * * @author Mark Donszelmann * @version $Id: freehep-graphicsio-emf/src/main/java/org/freehep/graphicsio/emf/gdi/FlattenPath.java f2f1115939ae 2006/12/07 07:50:41 duns $ */ public class FlattenPath extends EMFTag { public FlattenPath() { super(65, 1); } public EMFTag read(int tagID, EMFInputStream emf, int len) throws IOException { return this; } }