mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2025-02-17 04:08:23 +00:00
19 lines
No EOL
483 B
C++
19 lines
No EOL
483 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "install/remote_nsp.hpp"
|
|
|
|
namespace tin::install::nsp
|
|
{
|
|
class USBNSP : public RemoteNSP
|
|
{
|
|
private:
|
|
std::string m_nspName;
|
|
|
|
public:
|
|
USBNSP(std::string nspName);
|
|
|
|
virtual void StreamToPlaceholder(std::shared_ptr<nx::ncm::ContentStorage>& contentStorage, NcmContentId placeholderId) override;
|
|
virtual void BufferData(void* buf, off_t offset, size_t size) override;
|
|
};
|
|
} |