summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/bcat/bcat.cpp
blob: 8bb2528c9e20447c591bce17e08f1de73a2e6e92 (plain) (tree)
1
2
3
4
5
6
7
8







                                            


                                                                   
                       

                                                           

                                                                                                                             
      
                      

                                

                        
                            
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/bcat/bcat.h"

namespace Service::BCAT {

BCAT::BCAT(Core::System& system, std::shared_ptr<Module> module,
           FileSystem::FileSystemController& fsc, const char* name)
    : Interface(system, std::move(module), fsc, name) {
    // clang-format off
    static const FunctionInfo functions[] = {
        {0, &BCAT::CreateBcatService, "CreateBcatService"},
        {1, &BCAT::CreateDeliveryCacheStorageService, "CreateDeliveryCacheStorageService"},
        {2, &BCAT::CreateDeliveryCacheStorageServiceWithApplicationId, "CreateDeliveryCacheStorageServiceWithApplicationId"},
    };
    // clang-format on
    RegisterHandlers(functions);
}

BCAT::~BCAT() = default;
} // namespace Service::BCAT