A controller-neutral API for working with GPS devices.

Dependents:   CsrLocationDemo CsrLocationDemo

Revision:
4:f35227b1f341
Parent:
1:c1122f8eec82
--- a/GPSProvider.h	Tue Nov 04 11:31:49 2014 +0000
+++ b/GPSProvider.h	Fri Nov 07 08:24:48 2014 +0000
@@ -244,9 +244,7 @@
         /* empty */
     }
 
-    virtual ~GPSProvider() {
-        stop();
-    }
+    ~GPSProvider();
 
 private:
     /**
@@ -256,7 +254,7 @@
      * driver library. The mechanics of the implementation are to be hidden
      * behind the abstract interface provided by GPSProvider.
      */
-    GPSProviderImplBase *const impl;
+    GPSProviderImplBase *impl;
 
     /* disallow copy constructor and assignment operators */
 private: