| 14 | #include "timestamp.h" |
| 15 | |
| 16 | MuseAthena::SensorConfig::SensorConfig () |
| 17 | : type (SensorType::UNKNOWN) |
| 18 | , n_channels (0) |
| 19 | , n_samples (0) |
| 20 | , sampling_rate (0.0) |
| 21 | , data_len (0) |
| 22 | , variable_length (false) |
| 23 | { |
| 24 | } |
| 25 | |
| 26 | MuseAthena::SensorConfig::SensorConfig (SensorType type, int n_channels, int n_samples, |
| 27 | double sampling_rate, size_t data_len, bool variable_length) |
nothing calls this directly
no outgoing calls
no test coverage detected