mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-16 20:04:23 +02:00
Added support for SeeYou CUP files
This commit is contained in:
22
src/data/csv.h
Normal file
22
src/data/csv.h
Normal file
@ -0,0 +1,22 @@
|
||||
#ifndef CSV_H
|
||||
#define CSV_H
|
||||
|
||||
#include <QIODevice>
|
||||
|
||||
class CSV
|
||||
{
|
||||
public:
|
||||
CSV(QIODevice *device, char delimiter = ',')
|
||||
: _device(device), _delimiter(delimiter), _line(1) {}
|
||||
|
||||
bool readEntry(QStringList &list);
|
||||
bool atEnd() const {return _device->atEnd();}
|
||||
int line() const {return _line;}
|
||||
|
||||
private:
|
||||
QIODevice *_device;
|
||||
char _delimiter;
|
||||
int _line;
|
||||
};
|
||||
|
||||
#endif // CSV_H
|
Reference in New Issue
Block a user