mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-15 21:10:07 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
14 lines
266 B
C++
14 lines
266 B
C++
#include "stdafx.h"
|
|
#include "FuseTestEvents.h"
|
|
|
|
void Fuse::TestEvents::read(std::ifstream& file) {
|
|
bool complete = false;
|
|
do {
|
|
TestEvent event;
|
|
event.read(file);
|
|
complete = !event.valid;
|
|
if (!complete)
|
|
events.push_back(event);
|
|
} while (!complete);
|
|
}
|