mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 12:07:13 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
50 lines
869 B
C++
50 lines
869 B
C++
//
|
|
// Rename.h
|
|
//
|
|
// Library: Zip
|
|
// Package: Manipulation
|
|
// Module: Rename
|
|
//
|
|
// Definition of the Rename class.
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Zip_Rename_INCLUDED
|
|
#define Zip_Rename_INCLUDED
|
|
|
|
|
|
#include "Poco/Zip/Zip.h"
|
|
#include "Poco/Zip/ZipOperation.h"
|
|
#include "Poco/Zip/ZipLocalFileHeader.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Zip {
|
|
|
|
|
|
class Zip_API Rename: public ZipOperation
|
|
/// Renames an existing Zip Entry
|
|
{
|
|
public:
|
|
Rename(const ZipLocalFileHeader& hdr, const std::string& newZipEntryName);
|
|
/// Creates the Rename.
|
|
|
|
void execute(Compress& c, std::istream& input);
|
|
/// Performs the rename operation
|
|
|
|
private:
|
|
const ZipLocalFileHeader _hdr;
|
|
const std::string _newZipEntryName;
|
|
};
|
|
|
|
|
|
} } // namespace Poco::Zip
|
|
|
|
|
|
#endif // Zip_Rename_INCLUDED
|