- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileManager.h
More file actions
Latest commit
16 lines (15 loc) · 390 Bytes
/
Copy pathFileManager.h
File metadata and controls
16 lines (15 loc) · 390 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#include"Common.h"
/**
* \brief Helper for managing file IO.
*/
classFileManager
{
public:
/**
* \brief Reads a text file and returns all lines as a string vector.
* \param fileName Path & Name of the text file to read from.
* \return List of lines as strings from the text file.
*/
std::vector<std::string> GetFileLines(const std::string& fileName) const;
};