1 // Copyright 2002, FreeHEP.
2 package org.freehep.graphicsio.emf.gdi;
3
4 import java.io.IOException;
5
6 import org.freehep.graphicsio.emf.EMFInputStream;
7 import org.freehep.graphicsio.emf.EMFTag;
8
9 /**
10 * RealizePalette TAG.
11 *
12 * @author Mark Donszelmann
13 * @version $Id: RealizePalette.java 10140 2006-12-07 07:50:41Z duns $
14 */
15 public class RealizePalette extends EMFTag {
16
17 public RealizePalette() {
18 super(52, 1);
19 }
20
21 public EMFTag read(int tagID, EMFInputStream emf, int len)
22 throws IOException {
23
24 return this;
25 }
26
27 }