Adding final assignment updates

This commit is contained in:
Christopher Sanden
2025-11-13 15:15:01 +01:00
parent ae8a53e16b
commit 58772c0488
15 changed files with 6127 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
// FileReaderUtils.h
#pragma once
#if !defined(FILEREADERUTILS_H)
#define FILEREADERUTILS_H
#include <string>
/**
* @brief [Internal] Safely parses the "records:=N" part of a header line.
* @param aHeaderLine The line, e.g., "[NODES;records:=11]"
* @return The number of records, or 0 if not found.
*/
int GetRecordCount(const std::string& aHeaderLine);
#endif // FILEREADERUTILS_H