// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project // SPDX-License-Identifier: GPL-3.0-or-later #pragma once #include "core/hle/service/cmif_types.h" #include "core/hle/service/service.h" namespace Core { class System; } namespace Service::FileSystem { class FileSystemController; } namespace Service::BCAT { class BcatBackend; class IBcatService; class IDeliveryCacheStorageService; class BcatInterface final : public ServiceFramework { public: explicit BcatInterface(Core::System& system_, const char* name_); ~BcatInterface() override; private: Result CreateBcatService(OutInterface out_interface); Result CreateDeliveryCacheStorageService( OutInterface out_interface); Result CreateDeliveryCacheStorageServiceWithApplicationId( u64 title_id, OutInterface out_interface); std::unique_ptr backend; Service::FileSystem::FileSystemController& fsc; }; } // namespace Service::BCAT