Sensor data implementation

This commit is contained in:
2026-01-15 01:24:57 -05:00
parent 5f31171fe6
commit 017a5f3cf0
10 changed files with 218 additions and 125 deletions

View File

@@ -0,0 +1,12 @@
#ifndef VARIANT_H
#define VARIANT_H
#include <variant> // NOLINT
template <class... Ts> struct overloaded : Ts... {
using Ts::operator()...;
};
template <class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
#endif // VARIANT_H