Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2189 | - | 1 | // -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*- |
2 | |||
3 | #ifndef AP_GPS_None_h |
||
4 | #define AP_GPS_None_h |
||
5 | |||
6 | #include "GPS.h" |
||
7 | |||
8 | class AP_GPS_None : public GPS |
||
9 | { |
||
10 | public: |
||
11 | AP_GPS_None(void *s) : GPS(s) {} |
||
12 | virtual void init(void) {} |
||
13 | |||
14 | virtual bool read(void) { |
||
15 | return false; |
||
16 | }; |
||
17 | }; |
||
18 | #endif |