@brief Casts int(ushort) to level, useful for iterating through enum.
| 593 | } |
| 594 | /// @brief Casts int(ushort) to level, useful for iterating through enum. |
| 595 | static Level castFromInt(base::type::EnumType l) { |
| 596 | return static_cast<Level>(l); |
| 597 | } |
| 598 | /// @brief Converts level to associated const char* |
| 599 | /// @return Upper case string based level. |
| 600 | static const char* convertToString(Level level); |
nothing calls this directly
no outgoing calls
no test coverage detected