mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-25 15:19:21 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
35 lines
451 B
C++
35 lines
451 B
C++
//
|
|
// ZipOperation.cpp
|
|
//
|
|
// $Id: //poco/1.4/Zip/src/ZipOperation.cpp#1 $
|
|
//
|
|
// Library: Zip
|
|
// Package: Manipulation
|
|
// Module: ZipOperation
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Zip/ZipOperation.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Zip {
|
|
|
|
|
|
ZipOperation::ZipOperation()
|
|
{
|
|
}
|
|
|
|
|
|
ZipOperation::~ZipOperation()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Zip
|