1
0
Fork 0
mirror of https://github.com/gwm17/DaqGrimoire.git synced 2024-11-23 03:08:52 -05:00

Added file name getter to DYFile

This commit is contained in:
Gordon McCann 2022-09-29 19:42:02 -04:00
parent a76c903b8d
commit 09f1cf951c

View File

@ -86,6 +86,7 @@ namespace DaqGrimoire {
const bool IsEOF() const { return m_isEOF; }
const std::size_t GetFileSizeBytes() const { return m_fileSizeBytes; }
const std::size_t GetFileSizeEvents() const { return m_fileSizeEvents; }
const std::filesystem::path& GetFilePath() const { return m_filepath; }
private:
void FillBuffer()