mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
31ab494aaa
git-svn-id: https://arducopter.googlecode.com/svn/trunk@431 f9c3cf11-9bcb-44bc-f272-b75c42450872
12 lines
182 B
C++
12 lines
182 B
C++
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
|
|
|
#ifndef AP_GPS_None_h
|
|
#define AP_GPS_None_h
|
|
|
|
#include <GPS.h>
|
|
|
|
class AP_GPS_None : public GPS
|
|
{
|
|
};
|
|
#endif
|