Individual (per object) conversion as well as per unit (class) now possible, this is required for sexagesimal conversion (degrees) and will be required for geo-positions. Further classed for avionics.

This commit is contained in:
Klaus Basan
2013-04-05 02:29:52 +02:00
parent 943872ff67
commit eb102372f1
18 changed files with 622 additions and 98 deletions

View File

@@ -16,6 +16,11 @@ int CSamplesAviation::samples()
CAviationVerticalPositions vp2 = vp1;
qDebug() << vp1 << (vp1 == vp2) << (vp1 != vp2);
CComSystem c1 = CComSystem::getCom1Unit(125.3);
qDebug() << c1;
c1.setActiveUnicom();
qDebug() << c1;
// bye
return 0;
}

View File

@@ -1,10 +1,10 @@
#ifndef SAMPLESAVIATION_H
#define SAMPLESAVIATION_H
#include <QDebug>
#include "blackmisc/avheading.h"
#include "blackmisc/avverticalpositions.h"
#include "blackmisc/pqconstants.h"
#include "blackmisc/aviocomsystem.h"
using namespace BlackMisc;