EightBit/Z80/fusetest_Z80/FuseTestEvents.h
2022-01-17 19:10:15 +00:00

17 lines
250 B
C++

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