mirror of
https://github.com/zeldaret/ss
synced 2026-08-02 00:23:52 -04:00
16 lines
285 B
C++
16 lines
285 B
C++
#ifndef NAND_RESULT_TRACKER_H
|
|
#define NAND_RESULT_TRACKER_H
|
|
|
|
#include "rvl/NAND.h"
|
|
|
|
class NandResultTracker {
|
|
public:
|
|
static NandResultTracker *GetInstance();
|
|
bool isFailure(NANDResult status);
|
|
|
|
private:
|
|
NandResultTracker *sInstance;
|
|
};
|
|
|
|
#endif
|