mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-23 12:13:11 +00:00
23 lines
No EOL
596 B
C++
Executable file
23 lines
No EOL
596 B
C++
Executable file
#pragma once
|
|
|
|
#include <switch.h>
|
|
#include <string>
|
|
#include "install/install.hpp"
|
|
#include "install/remote_nsp.hpp"
|
|
|
|
namespace tin::install::nsp
|
|
{
|
|
class RemoteNSPInstall : public Install
|
|
{
|
|
private:
|
|
RemoteNSP* m_remoteNSP;
|
|
|
|
protected:
|
|
std::tuple<nx::ncm::ContentMeta, NcmContentInfo> ReadCNMT() override;
|
|
void InstallNCA(const NcmContentId& ncaId) override;
|
|
void InstallTicketCert() override;
|
|
|
|
public:
|
|
RemoteNSPInstall(FsStorageId destStorageId, bool ignoreReqFirmVersion, RemoteNSP* remoteNSP);
|
|
};
|
|
} |