18 lines
176 B
C++
Executable File
18 lines
176 B
C++
Executable File
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
struct BarometerObservation {
|
|
|
|
double hpa;
|
|
|
|
BarometerObservation() { ; }
|
|
BarometerObservation(const float hpa) : hpa(hpa) {
|
|
|
|
;}
|
|
|
|
};
|
|
|
|
|