Colin Stearns / Mbed 2 deprecated dgps

Dependencies:   mbed

Revision:
6:f0248eb6714d
Parent:
4:c75d5e5e6bfc
diff -r eef5ea6a9916 -r f0248eb6714d handle/handleGPS.h
--- a/handle/handleGPS.h	Thu Apr 03 15:56:05 2014 +0000
+++ b/handle/handleGPS.h	Thu Apr 03 16:27:23 2014 +0000
@@ -2,10 +2,10 @@
 #define _HANDLEGPS_H_
 
 #include "adapt/usb.h"
-#include "adapt/camera.h"
+#include "adapt/gps.h"
 class GPSHandle{
 private:
-    GPS gps
+    GPS gps;
     bool initialized;
     
     /// \brief Setup
@@ -16,7 +16,7 @@
     bool check();
 public:
     /// \brief Constructor
-    ImageHandle():initialized(false){}
+    GPSHandle():initialized(false){}
     /// \brief Run an instance of this
     void run();
 };