Browse Source

Missed these

QGC4.4
Gus Grubba 7 years ago
parent
commit
3fc23e1bb0
  1. 1
      src/Airmap/AirMapFlightManager.h
  2. 3
      src/Airmap/AirMapRestrictionManager.cc
  3. 3
      src/Airmap/AirMapRulesetsManager.cc
  4. 2
      src/Airmap/AirMapSharedState.cc
  5. 2
      src/Airmap/AirMapTrafficMonitor.cc
  6. 16
      src/AirspaceManagement/AirspaceManager.h

1
src/Airmap/AirMapFlightManager.h

@ -13,6 +13,7 @@ @@ -13,6 +13,7 @@
#include <QObject>
#include <QTimer>
#include <QList>
//-----------------------------------------------------------------------------
/// class to upload a flight

3
src/Airmap/AirMapRestrictionManager.cc

@ -7,8 +7,9 @@ @@ -7,8 +7,9 @@
*
****************************************************************************/
#include "AirMapManager.h"
#include "AirMapRestrictionManager.h"
#include "AirMapSharedState.h"
#include "AirMapManager.h"
AirMapRestrictionManager::AirMapRestrictionManager(AirMapSharedState& shared)
: _shared(shared)

3
src/Airmap/AirMapRulesetsManager.cc

@ -7,8 +7,9 @@ @@ -7,8 +7,9 @@
*
****************************************************************************/
#include "AirMapManager.h"
#include "AirMapRulesetsManager.h"
#include "AirMapSharedState.h"
#include "AirMapManager.h"
//-----------------------------------------------------------------------------
AirMapRulesetsManager::AirMapRulesetsManager(AirMapSharedState& shared)

2
src/Airmap/AirMapSharedState.cc

@ -7,8 +7,8 @@ @@ -7,8 +7,8 @@
*
****************************************************************************/
#include "AirMapManager.h"
#include "AirMapSharedState.h"
#include "AirMapManager.h"
void
AirMapSharedState::setSettings(const Settings& settings)

2
src/Airmap/AirMapTrafficMonitor.cc

@ -7,8 +7,8 @@ @@ -7,8 +7,8 @@
*
****************************************************************************/
#include "AirMapManager.h"
#include "AirMapTrafficMonitor.h"
#include "AirMapManager.h"
AirMapTrafficMonitor::~AirMapTrafficMonitor()
{

16
src/AirspaceManagement/AirspaceManager.h

@ -43,22 +43,6 @@ Q_DECLARE_LOGGING_CATEGORY(AirspaceManagementLog) @@ -43,22 +43,6 @@ Q_DECLARE_LOGGING_CATEGORY(AirspaceManagementLog)
//-----------------------------------------------------------------------------
/**
* Contains the status of the Airspace authorization
*/
class AirspaceAuthorization : public QObject {
Q_OBJECT
public:
enum PermitStatus {
PermitUnknown = 0,
PermitPending,
PermitAccepted,
PermitRejected,
};
Q_ENUM(PermitStatus)
};
//-----------------------------------------------------------------------------
/**
* @class AirspaceManager
* Base class for airspace management. There is one (global) instantiation of this
*/

Loading…
Cancel
Save