CSJ2K.j2k.image.output.ImgWriterPPM.flush C# (CSharp) Method

flush() public method

Writes all buffered data to the file or resource.
If an I/O error occurs. /// ///
public flush ( ) : void
return void
        public override void flush()
        {
            // No flush needed here since we are using a RandomAccessFile Get rid
            // of line buffer (is this a good choice?)
            buf = null;
        }