wxzipnotifierif you need to know when a wxzipinputstream updates a wxzipentry, you can create a notifier by deriving from this abstract base class, overriding onentryupdated(). an instance of your notifier class can then be assigned to wxzipentry objects, using wxzipentry::setnotifier(). setting a notifier is not usually necessary. it is used to handle certain cases when modifying an zip in a pipeline (i.e. between non-seekable streams). see 'archives on non-seekable streams'. derived from no base class include files <wx/zipstrm.h> see also
archives on non-seekable streams members
wxzipnotifier::onentryupdatedvoid onentryupdated(wxzipentry& entry) override this to receive notifications when an wxzipentry object changes.
|