Reader.java 401 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.fontengine.font.postscript;

import com.adobe.fontengine.font.FontInputStream;
import com.adobe.fontengine.font.InvalidFontException;
import java.io.IOException;

public interface Reader {
    public int read(FontInputStream var1) throws IOException, InvalidFontException;

    public void unreadLast(FontInputStream var1) throws IOException;
}