mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:00:08 +00:00
Add threat category to alert dock widget
This commit is contained in:
parent
9437b0bfce
commit
49ba9b905b
3 changed files with 57 additions and 15 deletions
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue