#pragma once #include struct BarometerObservation { double hpa; BarometerObservation() { ; } BarometerObservation(const float hpa) : hpa(hpa) { ;} };