. * * @author Nicolai Ehemann * @author André Rothe * @copyright Copyright (C) 2013-2015 Nicolai Ehemann and contributors * @license GNU GPL * @version 1.0 */ namespace ZipStreamer; class COMPR { // compression method const STORE = 0x0000; // 0 - The file is stored (no compression) const DEFLATE = 0x0008; // 8 - The file is deflated // compression level (for deflate compression) const NONE = 0; const NORMAL = 1; const MAXIMUM = 2; const SUPERFAST = 3; }