Implement the most basic ReplayH5Reader

This commit is contained in:
2020-05-14 11:37:28 +02:00
parent b6f4ea1818
commit 8b379f32d4
2 changed files with 43 additions and 40 deletions
+2 -1
View File
@@ -22,7 +22,8 @@ public:
ReplayH5Reader(const std::string device, const std::string channel_name);
virtual ~ReplayH5Reader();
void close_file();
void get_frame(const uint64_t pulse_id, ModuleFrame* metadata, char* data);
void get_frame(
const uint64_t pulse_id, ModuleFrame* metadata, char* frame_buffer);
};