SLProject  4.3.020
A platform independent 3D computer graphics framework for desktop OS, Android, iOS and online in web browsers
SENSAndroidGps.h
Go to the documentation of this file.
1 #ifndef SENS_ANDROID_GPS_H
2 #define SENS_ANDROID_GPS_H
3 
4 #include <SENSGps.h>
5 #include <jni.h>
6 
7 class SENSAndroidGps : public SENSGps
8 {
9 public:
11 
12  bool start() override;
13  void stop() override;
14 
15  void updateLocation(double latitudeDEG,
16  double longitudeDEG,
17  double altitudeM,
18  float accuracyM);
19 };
20 
21 #endif
void updateLocation(double latitudeDEG, double longitudeDEG, double altitudeM, float accuracyM)
void stop() override
bool start() override