mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
20 lines
352 B
C++
20 lines
352 B
C++
#include <QCoreApplication>
|
|
#include "samplesphysicalquantities.h"
|
|
#include "samplesaviation.h"
|
|
|
|
using namespace BlackMisc;
|
|
using namespace BlackMiscTest;
|
|
|
|
/*!
|
|
* Sample tests
|
|
*/
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
CSamplesPhysicalQuantities::samples();
|
|
CSamplesAviation::samples();
|
|
|
|
return a.exec();
|
|
}
|