Add tornado possible to alert dock widget

This commit is contained in:
Dan Paulat 2024-06-26 22:46:54 -05:00
parent 49ba9b905b
commit f0347da923
2 changed files with 45 additions and 10 deletions

View file

@ -21,16 +21,17 @@ class AlertModel : public QAbstractTableModel
public:
enum class Column : int
{
Etn = 0,
OfficeId = 1,
Phenomenon = 2,
Significance = 3,
ThreatCategory = 4,
State = 5,
Counties = 6,
StartTime = 7,
EndTime = 8,
Distance = 9
Etn = 0,
OfficeId = 1,
Phenomenon = 2,
Significance = 3,
ThreatCategory = 4,
TornadoPossible = 5,
State = 6,
Counties = 7,
StartTime = 8,
EndTime = 9,
Distance = 10
};
explicit AlertModel(QObject* parent = nullptr);