QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
SignalDataTransition.cc
Go to the documentation of this file.
2
3// SignalDataTransition is a template class - most implementation must remain
4// in the header for template instantiation. This file provides explicit
5// instantiations for common signal argument types to improve compile times.
6
7// Explicit instantiations for common single-argument signals
8template class SignalDataTransition<bool>;
9template class SignalDataTransition<int>;
10template class SignalDataTransition<double>;
13
14// Explicit instantiations for common two-argument signals
18
19// Helper function explicit instantiations
20// Note: makeSignalDataTransition is also a template and requires the signal
21// type to be deduced at call site, so it remains header-only.