// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include "core/file_sys/vfs/vfs.h" #include "core/hle/service/service.h" namespace Service::FileSystem { class IMultiCommitManager final : public ServiceFramework { public: explicit IMultiCommitManager(Core::System& system_); ~IMultiCommitManager() override; private: void Add(HLERequestContext& ctx); void Commit(HLERequestContext& ctx); FileSys::VirtualFile backend; }; } // namespace Service::FileSystem