mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
29 lines
779 B
C
29 lines
779 B
C
|
/* OSCAR CSV Reader Implementation
|
||
|
*
|
||
|
* Copyright (c) 2020 The OSCAR Team
|
||
|
*
|
||
|
* This file is subject to the terms and conditions of the GNU General Public
|
||
|
* License. See the file COPYING in the main directory of the source code
|
||
|
* for more details. */
|
||
|
|
||
|
#include <QTextStream>
|
||
|
|
||
|
class CSVReader
|
||
|
{
|
||
|
public:
|
||
|
CSVReader(QIODevice & stream, const QString & delim=",", const QString & comment=QString());
|
||
|
virtual ~CSVReader() = default;
|
||
|
|
||
|
QStringList readRow();
|
||
|
virtual bool readRow(QStringList & fields); // override this for more complicated processing
|
||
|
void setFieldNames(QStringList & header);
|
||
|
bool readRow(QHash<QString,QString> & row);
|
||
|
|
||
|
protected:
|
||
|
QTextStream m_stream;
|
||
|
QString m_delim;
|
||
|
QString m_comment;
|
||
|
QStringList m_field_names;
|
||
|
};
|
||
|
|