mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
27 lines
506 B
C++
27 lines
506 B
C++
#ifndef BLACKMISC_SAMPLESAVIATION_H
|
|
#define BLACKMISC_SAMPLESAVIATION_H
|
|
|
|
#include "blackmisc/avheading.h"
|
|
#include "blackmisc/avverticalpositions.h"
|
|
#include "blackmisc/pqconstants.h"
|
|
#include "blackmisc/aviocomsystem.h"
|
|
#include "blackmisc/avionavsystem.h"
|
|
#include "blackmisc/aviotransponder.h"
|
|
|
|
namespace BlackMiscTest {
|
|
|
|
/*!
|
|
* \brief Samples for physical quantities
|
|
*/
|
|
class CSamplesAviation
|
|
{
|
|
public:
|
|
/*!
|
|
* \brief Run the samples
|
|
*/
|
|
static int samples();
|
|
};
|
|
} // namespace
|
|
|
|
#endif
|