@brief Casts configuration type to int, useful for iterating through enum.
| 650 | static const base::type::EnumType kMaxValid = static_cast<base::type::EnumType>(ConfigurationType::MaxLogFileSize); |
| 651 | /// @brief Casts configuration type to int, useful for iterating through enum. |
| 652 | static base::type::EnumType castToInt(ConfigurationType configurationType) { |
| 653 | return static_cast<base::type::EnumType>(configurationType); |
| 654 | } |
| 655 | /// @brief Casts int(ushort) to configurationt type, useful for iterating through enum. |
| 656 | static ConfigurationType castFromInt(base::type::EnumType c) { |
| 657 | return static_cast<ConfigurationType>(c); |
nothing calls this directly
no outgoing calls
no test coverage detected