Enroute Flight Navigation
A navigation app for VFR pilots
DataFileAbstract.h
1/***************************************************************************
2 * Copyright (C) 2023.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 <QFile>
24#include <QObject>
25#include <QSharedPointer>
26
27namespace FileFormats
28{
29
42
43class DataFileAbstract
44{
45
46public:
47 DataFileAbstract() = default;
48 ~DataFileAbstract() = default;
49
50
51 //
52 // Getter methods
53 //
54
66 [[nodiscard]] bool isValid() const { return m_error.isEmpty(); }
67
75 [[nodiscard]] QString error() const { return m_error; }
76
84 [[nodiscard]] QStringList warnings() const { return m_warnings; }
85
86
87
88 //
89 // Methods
90 //
91
102 [[nodiscard]] static QSharedPointer<QFile> openFileURL(const QString& fileName);
103
104protected:
105 void addWarning(const QString& warning) { m_warnings += warning; }
106 void setError(const QString& newError) { m_error = newError; }
107
108private:
109 QString m_error;
110 QStringList m_warnings;
111};
112
113} // namespace FileFormats
static QSharedPointer< QFile > openFileURL(const QString &fileName)
Open file, file URL or Android content URL.
QString error() const
Error string.
bool isValid() const
Validity check.
QStringList warnings() const
Warnings.