struct Core::Portable::ZipPackage::Entry

#include <corefile.h>

struct Entry
{
    // fields

    FileName name;
    uint32 localHeaderOffset;
    uint32 compressedSize;
    uint32 uncompressedSize;

    // construction

    Entry(CStringPtr name = nullptr);

    // methods

    bool operator > (const Entry& other) const;
    bool operator == (const Entry& other) const;
};