EightBit/LR35902/fusetest_LR35902/FuseExpectedTestResults.h
Adrian.Conlon 42b1b7dc53 Add a one off converter for Z80 -> LR35902 fuse tests (TBC!)
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-08-10 23:46:41 +01:00

24 lines
455 B
C++

#pragma once
#include <map>
#include <string>
#include <fstream>
#include "FuseExpectedTestResult.h"
namespace Fuse {
class ExpectedTestResults {
private:
std::map<std::string, ExpectedTestResult> results;
void read(std::ifstream& file);
void write(std::ofstream& file);
public:
void read(std::string path);
void write(std::string path);
const std::map<std::string, ExpectedTestResult>& container() const {
return results;
}
};
}