EightBit/Z80/fusetest_Z80/FuseTestEvents.h

13 lines
179 B
C
Raw Normal View History

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