Multi diag tools
|
FileReader is a helper class to read a file. More...
#include <FileReader.h>
Public Types |
Public Member Functions | |
bool | readFile (const QString &filePath, const QByteArray &encoding, qint64 maxSize, EolMode eolMode=TextMode) |
Read a entire file. | |
QString | stringData () const |
Get string data. | |
Mdt::Error | lastError () const |
Get last error. | |
void | setAutoCommitError (bool autoCommit) |
Set auto commit of errors. More... | |
FileReader is a helper class to read a file.
Reading a file can be done easily by using QFile and QTextStream, but adding some error checking introduces additionnal code every time. File reader does some checks for common cases and fills a error, avaibale in lastError().
Typical usage:
Definition at line 56 of file FileReader.h.
EOL mode.
Enumerator | |
---|---|
TextMode |
While reading, end of lines are translated to ' |
BinaryMode |
While reading, the end of line are left as they are. |
Definition at line 62 of file FileReader.h.
void Mdt::PlainText::FileReader::setAutoCommitError | ( | bool | autoCommit | ) |
Set auto commit of errors.
If autoCommit is true, a error that occurs will be committed, else not. By default, error is not commited automatically.
Definition at line 108 of file FileReader.cpp.