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
|
|
|
|
|
|
|
|
#include <GPS.h>
|
|
|
|
|
|
|
|
class AP_GPS_None : public GPS
|
|
|
|
{
|
2010-10-17 03:06:04 -03:00
|
|
|
virtual void init(void) {};
|
|
|
|
virtual void update(void) {};
|
2010-09-07 02:45:06 -03:00
|
|
|
};
|
|
|
|
#endif
|