Conference Registration 2024.07.18.04
Loading...
Searching...
No Matches
filewriter.h
Go to the documentation of this file.
1
9#ifndef FILEWRITER_H
10#define FILEWRITER_H
11
12#include <QString>
13
14
21{
22public:
27 explicit FileWriter(const QString &fileName);
28
34 bool write(const QString &contents) const;
35
36private:
37 QString m_FileName;
38};
39
40#endif // FILEWRITER_H
The FileWriter class provides functionality to write data to a file.
Definition filewriter.h:21
bool write(const QString &contents) const
Write the contents to the file.
Definition filewriter.cpp:23
FileWriter(const QString &fileName)
Construct a new File Writer object.
Definition filewriter.cpp:16