Give AP_GPS_None a ctor so that it fits in.

git-svn-id: https://arducopter.googlecode.com/svn/trunk@1247 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
DrZiplok@gmail.com 2010-12-24 19:59:07 +00:00
parent 7fc6515300
commit d6818f99c3

View File

@ -7,6 +7,8 @@
class AP_GPS_None : public GPS
{
public:
AP_GPS_None(Stream *s) : GPS(s) {}
virtual void init(void) {};
virtual bool read(void) { return false; };
};