mirror of https://github.com/ArduPilot/ardupilot
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
|
/*
|
||
|
This program is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
/*
|
||
|
Flymaple port by Mike McCauley
|
||
|
*/
|
||
|
|
||
|
#ifndef __AP_HAL_FLYMAPLE_NAMESPACE_H__
|
||
|
#define __AP_HAL_FLYMAPLE_NAMESPACE_H__
|
||
|
|
||
|
/* While not strictly required, names inside the FLYMAPLE namespace are prefixed
|
||
|
* AP_HAL_FLYMAPLE_NS for clarity. (Some of our users aren't familiar with all of the
|
||
|
* C++ namespace rules.)
|
||
|
*/
|
||
|
|
||
|
namespace AP_HAL_FLYMAPLE_NS {
|
||
|
class FLYMAPLEUARTDriver;
|
||
|
class FLYMAPLEI2CDriver;
|
||
|
class FLYMAPLESPIDeviceManager;
|
||
|
class FLYMAPLESPIDeviceDriver;
|
||
|
class FLYMAPLEAnalogSource;
|
||
|
class FLYMAPLEAnalogIn;
|
||
|
class FLYMAPLEStorage;
|
||
|
class FLYMAPLEConsoleDriver;
|
||
|
class FLYMAPLEGPIO;
|
||
|
class FLYMAPLEDigitalSource;
|
||
|
class FLYMAPLERCInput;
|
||
|
class FLYMAPLERCOutput;
|
||
|
class FLYMAPLESemaphore;
|
||
|
class FLYMAPLEScheduler;
|
||
|
class FLYMAPLEUtil;
|
||
|
}
|
||
|
|
||
|
#endif // __AP_HAL_FLYMAPLE_NAMESPACE_H__
|
||
|
|