1//
2// Delete.cpp
3//
4// Library: Zip
5// Package: Manipulation
6// Module: Delete
7//
8// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/Zip/Delete.h"
16
17
18namespace Poco {
19namespace Zip {
20
21
22Delete::Delete(const ZipLocalFileHeader& hdr):
23 _hdr(hdr)
24{
25}
26
27
28void Delete::execute(Compress& /*c*/, std::istream& /*input*/)
29{
30 // due to absolute positioning in compress we don't need to do anything
31}
32
33
34} } // namespace Poco::Zip
35