#pragma once #include #include #include namespace scwx { namespace awips { namespace ibw { enum class ThreatCategory : int { Base = 0, Significant = 1, Considerable = 2, Destructive = 3, Catastrophic = 4, Unknown }; struct ImpactBasedWarningInfo { bool hasObservedTag_ {false}; bool hasTornadoPossibleTag_ {false}; std::vector threatCategories_ {ThreatCategory::Base}; }; const ImpactBasedWarningInfo& GetImpactBasedWarningInfo(Phenomenon phenomenon); ThreatCategory GetThreatCategory(const std::string& name); const std::string& GetThreatCategoryName(ThreatCategory threatCategory); } // namespace ibw } // namespace awips } // namespace scwx