mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 13:17:54 -06:00
Zipper concept clarified.
This commit is contained in:
parent
6b655f9aa3
commit
2056f4c336
4 changed files with 94 additions and 81 deletions
|
@ -165,6 +165,23 @@ protected:
|
|||
ProgresIndicatorPtr global_progressind_;
|
||||
};
|
||||
|
||||
class Zipper {
|
||||
struct Impl;
|
||||
std::unique_ptr<Impl> m_impl;
|
||||
public:
|
||||
|
||||
Zipper(const std::string& zipfilepath);
|
||||
~Zipper();
|
||||
|
||||
void next_entry(const std::string& fname);
|
||||
|
||||
std::string get_name() const;
|
||||
|
||||
std::ostream& stream();
|
||||
|
||||
void close();
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Implementation of the printing logic.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue