Enroute Flight Navigation
A navigation app for VFR pilots
CSV.h
1/***************************************************************************
2 * Copyright (C) 2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include "DataFileAbstract.h"
24
25using namespace Qt::Literals::StringLiterals;
26
27
28namespace FileFormats
29{
30
35
36 class CSV : public DataFileAbstract
37 {
38
39 public:
46 CSV(const QString& fileName);
47
48
49
50 //
51 // Getter Methods
52 //
53
58 [[nodiscard]] QVector<QStringList> lines() const { return m_lines; }
59
60
61 //
62 // Static methods
63 //
64
69 [[nodiscard]] static QStringList mimeTypes() { return {u"text/csv"_s, u"text/plain"_s}; }
70
71 private:
72 // Private helper functions
73 static QStringList parseCSV(const QString& string);
74
75 QVector<QStringList> m_lines;
76 };
77
78} // namespace FileFormats
CSV(const QString &fileName)
Constructor.
QVector< QStringList > lines() const
Waypoints specified in the CUP file.
Definition CSV.h:58
static QStringList mimeTypes()
Mime type for files that can be opened by this class.
Definition CSV.h:69