1 // Copyright 2002, FreeHEP.
2 package org.freehep.graphicsio.emf.gdi;
3
4 import java.io.IOException;
5
6 import org.freehep.graphicsio.emf.EMFOutputStream;
7
8 /**
9 * EMF Gradient
10 *
11 * @author Mark Donszelmann
12 * @version $Id: Gradient.java 10140 2006-12-07 07:50:41Z duns $
13 */
14 public abstract class Gradient {
15
16 public Gradient() {
17 }
18
19 public abstract void write(EMFOutputStream emf) throws IOException;
20 }