mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-12 17:04:46 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
13 lines
179 B
C++
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);
|
|
};
|
|
} |