You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
722 B
29 lines
722 B
|
|
#ifndef __AP_HAL_EMPTY_NAMESPACE_H__ |
|
#define __AP_HAL_EMPTY_NAMESPACE_H__ |
|
|
|
/* While not strictly required, names inside the Empty namespace are prefixed |
|
* with Empty for clarity. (Some of our users aren't familiar with all of the |
|
* C++ namespace rules.) |
|
*/ |
|
|
|
namespace Empty { |
|
class EmptyUARTDriver; |
|
class EmptyI2CDriver; |
|
class EmptySPIDeviceManager; |
|
class EmptySPIDeviceDriver; |
|
class EmptyAnalogSource; |
|
class EmptyAnalogIn; |
|
class EmptyStorage; |
|
class EmptyGPIO; |
|
class EmptyDigitalSource; |
|
class EmptyRCInput; |
|
class EmptyRCOutput; |
|
class EmptySemaphore; |
|
class EmptyScheduler; |
|
class EmptyUtil; |
|
class EmptyPrivateMember; |
|
} |
|
|
|
#endif // __AP_HAL_EMPTY_NAMESPACE_H__ |
|
|
|
|