1
0
mirror of https://github.com/MoleskiCoder/EightBit.git synced 2025-01-12 23:30:24 +00:00
Adrian.Conlon 982bccf0c9 First stab at adding Fuse Test runner.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-06-05 23:24:08 +01:00

13 lines
179 B
C++

#pragma once
#include <vector>
#include "FuseTestEvent.h"
namespace Fuse {
class TestEvents {
public:
std::vector<TestEvent> events;
void read(std::ifstream& file);
};
}