Add threat category to alert dock widget

This commit is contained in:
Dan Paulat 2024-06-18 00:33:22 -05:00
parent 9437b0bfce
commit 49ba9b905b
3 changed files with 57 additions and 15 deletions

View file

@ -7,13 +7,13 @@ namespace scwx
namespace awips
{
enum class ThreatCategory
enum class ThreatCategory : int
{
Base,
Significant,
Considerable,
Destructive,
Catastrophic,
Base = 0,
Significant = 1,
Considerable = 2,
Destructive = 3,
Catastrophic = 4,
Unknown
};