28template<
typename T,
typename =
void>
42std::string getMessageNameVersion()
45 if (T::MESSAGE_VERSION == 0) {
return "";}
46 return "_v" + std::to_string(T::MESSAGE_VERSION);
Trait to check if a message type T has a MESSAGE_VERSION constant.
Definition message_version.hpp:29