mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-06 13:30:45 +00:00
17 lines
250 B
C++
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;
|
|
};
|
|
} |