OSCAR-code/oscar/csv.h
sawinglogz f33dd654f8 Add generic CSV reader class and switch ZEO loader to it.
No change in functionality for ZEO files.

Resolves crashing (assertion failure) on non-ZEO CSV files.
2020-01-29 17:05:03 -05:00

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;
};