1 |
|
2 |
package org.freehep.graphicsio.emf.gdiplus; |
3 |
|
4 |
import java.io.IOException; |
5 |
|
6 |
import org.freehep.graphicsio.emf.EMFInputStream; |
7 |
import org.freehep.graphicsio.emf.EMFOutputStream; |
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
@author |
14 |
@version |
15 |
|
16 |
public class ResetClip extends EMFPlusTag { |
17 |
|
18 |
public ResetClip() { |
19 |
super(49, 1); |
20 |
} |
21 |
|
22 |
public EMFPlusTag read(int tagID, int flags, EMFInputStream emf, int len) |
23 |
throws IOException { |
24 |
return new ResetClip(); |
25 |
} |
26 |
|
27 |
public void write(int tagID, int flags, EMFOutputStream emf) throws IOException { |
28 |
|
29 |
} |
30 |
|
31 |
} |