Look for specific impact based warning tags in text products

This commit is contained in:
Dan Paulat 2024-06-03 00:09:32 -05:00
parent 60aed45450
commit 9437b0bfce
5 changed files with 109 additions and 10 deletions

View file

@ -0,0 +1,24 @@
#pragma once
#include <string>
namespace scwx
{
namespace awips
{
enum class ThreatCategory
{
Base,
Significant,
Considerable,
Destructive,
Catastrophic,
Unknown
};
ThreatCategory GetThreatCategory(const std::string& name);
const std::string& GetThreatCategoryName(ThreatCategory threatCategory);
} // namespace awips
} // namespace scwx