viz1090/Aircraft.cpp
nathan eaf6bc70a8 fixed more warnings and Makefile issues. Should compile on mac now
Former-commit-id: cc10ac99b35ae34ba128642da32f0c9a223cfe31
2020-06-16 21:50:41 -07:00

25 lines
284 B
C++

#include "Aircraft.h"
Aircraft::Aircraft(uint32_t addr) {
this->addr = addr;
prev_seen = 0;
x = 0;
y = 0;
cx = 0;
cy = 0;
ox = 0;
oy = 0;
dox = 0;
doy = 0;
ddox = 0;
ddoy = 0;
lon = 0;
lat = 0;
}
Aircraft::~Aircraft() {
}