EightBit/LR35902/fusetest_LR35902/FuseTests.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

23 lines
392 B
C++

#pragma once
#include <map>
#include <string>
#include <fstream>
#include "FuseTest.h"
namespace Fuse {
class Tests {
private:
std::map<std::string, Test> tests;
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, Test>& container() const { return tests; }
};
}