Conference Registration 2024.07.18.04
Loading...
Searching...
No Matches
filereader.h
Go to the documentation of this file.
1
9#ifndef FILEREADER_H
10#define FILEREADER_H
11
12#include <QString>
13
14
21{
22public:
27 explicit FileReader(const QString &fileName);
28
33 QString read() const;
34
35private:
36 QString m_FileName;
37};
38
39#endif // FILEREADER_H
The FileReader class reads the contents of a file.
Definition filereader.h:21
FileReader(const QString &fileName)
Constructs a FileReader object with the specified file name.
Definition filereader.cpp:15
QString read() const
Reads the contents of the file.
Definition filereader.cpp:22