2010-09-07 02:57:39 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
|
|
|
|
2010-09-07 02:45:06 -03:00
|
|
|
#ifndef AP_GPS_None_h
|
|
|
|
#define AP_GPS_None_h
|
|
|
|
|
2011-04-30 23:05:17 -03:00
|
|
|
#include "GPS.h"
|
2010-09-07 02:45:06 -03:00
|
|
|
|
|
|
|
class AP_GPS_None : public GPS
|
|
|
|
{
|
2010-12-24 15:59:07 -04:00
|
|
|
public:
|
|
|
|
AP_GPS_None(Stream *s) : GPS(s) {}
|
2010-10-17 03:06:04 -03:00
|
|
|
virtual void init(void) {};
|
2010-12-24 02:35:09 -04:00
|
|
|
virtual bool read(void) { return false; };
|
2010-09-07 02:45:06 -03:00
|
|
|
};
|
|
|
|
#endif
|