// 
// Decompiled by Procyon v0.6.0
// 

package org.jline.jansi.io;

import java.io.IOException;
import java.io.OutputStream;

public final class WindowsAnsiProcessor extends AnsiProcessor
{
    public WindowsAnsiProcessor(final OutputStream ps, final long console) throws IOException {
        super(ps);
    }
    
    public WindowsAnsiProcessor(final OutputStream ps, final boolean stdout) throws IOException {
        super(ps);
    }
    
    public WindowsAnsiProcessor(final OutputStream ps) throws IOException {
        super(ps);
    }
}
