| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "filedevice/nin/seadNinFileDeviceBaseNin.h" |
| 4 | |
| 5 | namespace sead |
| 6 | { |
| 7 | class NinHostIOFileDevice : public NinFileDeviceBase |
| 8 | { |
| 9 | SEAD_RTTI_OVERRIDE(NinHostIOFileDevice, NinFileDeviceBase) |
| 10 | |
| 11 | public: |
| 12 | NinHostIOFileDevice(); |
| 13 | |
| 14 | bool doIsAvailable_() const override; |
| 15 | bool formatPathForFS_(BufferedSafeString* out, const SafeString& path) const override; |
| 16 | }; |
| 17 | } // namespace sead |
| 18 |