Loading...
Searching...
No Matches
SdfZipFile::Iterator Class Reference

Iterator for traversing and inspecting the contents of the zip archive. More...

#include <zipFile.h>

Public Types

using difference_type = std::ptrdiff_t
 
using value_type = std::string
 
using pointer = _ArrowProxy
 
using reference = std::string
 
using iterator_category = std::forward_iterator_tag
 

Public Member Functions

SDF_API Iterator (const Iterator &rhs)
 
SDF_API Iterator (Iterator &&rhs)
 
SDF_API Iteratoroperator= (const Iterator &rhs)
 
SDF_API Iteratoroperator= (Iterator &&rhs)
 
SDF_API Iteratoroperator++ ()
 
SDF_API Iterator operator++ (int)
 
SDF_API bool operator== (const Iterator &rhs) const
 
SDF_API bool operator!= (const Iterator &rhs) const
 
SDF_API reference operator* () const
 Returns filename of the current file in the zip archive.
 
SDF_API pointer operator-> () const
 Returns filename of the current file in the zip archive.
 
SDF_API const char * GetFile () const
 Returns pointer to the beginning of the current file in the zip archive.
 
SDF_API FileInfo GetFileInfo () const
 Returns FileInfo object containing information about the current file.
 

Friends

class SdfZipFile
 

Detailed Description

Iterator for traversing and inspecting the contents of the zip archive.

Definition at line 99 of file zipFile.h.

Member Typedef Documentation

◆ difference_type

using difference_type = std::ptrdiff_t

Definition at line 131 of file zipFile.h.

◆ iterator_category

using iterator_category = std::forward_iterator_tag

Definition at line 135 of file zipFile.h.

◆ pointer

using pointer = _ArrowProxy

Definition at line 133 of file zipFile.h.

◆ reference

using reference = std::string

Definition at line 134 of file zipFile.h.

◆ value_type

using value_type = std::string

Definition at line 132 of file zipFile.h.

Member Function Documentation

◆ GetFile()

SDF_API const char * GetFile ( ) const

Returns pointer to the beginning of the current file in the zip archive.

The contents of the current file span the range [GetFile(), GetFile() + GetFileInfo().size).

Note that this points to the raw data stored in the zip archive; no decompression or other transformation is applied.

◆ GetFileInfo()

SDF_API FileInfo GetFileInfo ( ) const

Returns FileInfo object containing information about the current file.

◆ operator*()

SDF_API reference operator* ( ) const

Returns filename of the current file in the zip archive.

◆ operator->()

SDF_API pointer operator-> ( ) const

Returns filename of the current file in the zip archive.

Friends And Related Function Documentation

◆ SdfZipFile

friend class SdfZipFile
friend

Definition at line 170 of file zipFile.h.


The documentation for this class was generated from the following file: