// Copyright (C) 2025 Andre Hartmann // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include #include namespace Git::Internal { class TemporaryPatchFile { public: TemporaryPatchFile(const QString &patch); Utils::FilePath filePath() const; private: std::unique_ptr patchFile; }; } // Git::Internal