mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile: remove GpsLocation
Only used in context of acquiring GPS locations with the mobile app, which we no longer do. Keep the DiveAndLocation structure around as that's needed by the ApplyGpsFixes command. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
105b60389c
commit
6f813b9f8e
6 changed files with 6 additions and 498 deletions
|
@ -5,10 +5,15 @@
|
|||
#define COMMAND_DIVESITE_H
|
||||
|
||||
#include "command_base.h"
|
||||
#include "core/gpslocation.h"
|
||||
|
||||
#include <QVector>
|
||||
|
||||
struct DiveAndLocation {
|
||||
struct dive *d;
|
||||
location_t location;
|
||||
QString name;
|
||||
};
|
||||
|
||||
// We put everything in a namespace, so that we can shorten names without polluting the global namespace
|
||||
namespace Command {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue