EightBit/Z80/fusetest_Z80/FuseExpectedTestResults.h

22 lines
388 B
C
Raw Permalink Normal View History

#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);
public:
void read(std::string path);
const std::map<std::string, ExpectedTestResult>& container() const {
return results;
}
};
}