mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 04:25:35 +08:00
Previously the metar source used to be the FSD connection. Since all METARs are also available via a webservice, use this source instead. This allows to retrieve and use METARs even if we are not connected.
74 lines
2.3 KiB
C++
74 lines
2.3 KiB
C++
/* Copyright (C) 2015
|
|
* swift project community / contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef BLACKCORE_GLOBAL_READERSETTINGS_H
|
|
#define BLACKCORE_GLOBAL_READERSETTINGS_H
|
|
|
|
#include "blackcoreexport.h"
|
|
#include <QStringList>
|
|
#include <QObject>
|
|
|
|
namespace BlackCore
|
|
{
|
|
//! Settings for readers
|
|
class BLACKCORE_EXPORT CGlobalReaderSettings : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! ICAO Reader protocol
|
|
const QString &protocolIcaoReader() const { return m_protocolIcaoReader; }
|
|
|
|
//! ICAO Reader server
|
|
const QString &serverIcaoReader() const { return m_serverIcaoReader; }
|
|
|
|
//! ICAO Reader base URL
|
|
const QString &baseUrlIcaoReader() const { return m_baseUrlIcaoReader; }
|
|
|
|
//! Model Reader protocol
|
|
const QString &protocolModelReader() const { return m_protocolModelReader; }
|
|
|
|
//! Model Reader server
|
|
const QString &serverModelReader() const { return m_serverModelReader; }
|
|
|
|
//! Model Reader server
|
|
const QString &baseUrlModelReader() const { return m_baseUrlModelReader; }
|
|
|
|
//! URL to read bookings
|
|
const QString &bookingsUrl() const { return m_bookingsUrl; }
|
|
|
|
//! VATSIM data file URLs
|
|
const QStringList &vatsimDataFileUrls() const { return m_vatsimDataFileUrls; }
|
|
|
|
//! VATSIM metar url
|
|
const QString &vatsimMetarUrl() const { return m_metarUrl; }
|
|
|
|
//! Singleton
|
|
static const CGlobalReaderSettings &instance();
|
|
|
|
private:
|
|
//! Default constructor
|
|
CGlobalReaderSettings();
|
|
|
|
//! Destructor.
|
|
~CGlobalReaderSettings() {}
|
|
|
|
QString m_protocolIcaoReader;
|
|
QString m_serverIcaoReader;
|
|
QString m_baseUrlIcaoReader;
|
|
QString m_protocolModelReader;
|
|
QString m_serverModelReader;
|
|
QString m_baseUrlModelReader;
|
|
QString m_bookingsUrl;
|
|
QStringList m_vatsimDataFileUrls;
|
|
QString m_metarUrl;
|
|
};
|
|
}
|
|
#endif // guard
|