SPIDriver: namespace explicit to better permit copypasta

This commit is contained in:
Pat Hickey 2012-12-14 17:55:20 -08:00 committed by Andrew Tridgell
parent 527dfb5af4
commit b79bd01761
2 changed files with 1 additions and 3 deletions

View File

@ -27,8 +27,6 @@ namespace AP_HAL {
class Scheduler;
class Semaphore;
class EmptyUARTDriver;
/* Utility Classes */
class Print;
class Stream;

View File

@ -8,7 +8,7 @@
class AP_HAL::SPIDeviceManager {
public:
virtual void init(void *) = 0;
virtual SPIDeviceDriver* device(enum AP_HAL::SPIDevice) = 0;
virtual AP_HAL::SPIDeviceDriver* device(enum AP_HAL::SPIDevice) = 0;
};
/**