mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:20:05 +00:00
27 lines
434 B
C++
27 lines
434 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace awips
|
|
{
|
|
|
|
enum class Significance
|
|
{
|
|
Warning,
|
|
Watch,
|
|
Advisory,
|
|
Statement,
|
|
Forecast,
|
|
Outlook,
|
|
Synopsis,
|
|
Unknown
|
|
};
|
|
|
|
Significance GetSignificance(const std::string& code);
|
|
const std::string& GetSignificanceCode(Significance significance);
|
|
const std::string& GetSignificanceText(Significance significance);
|
|
|
|
} // namespace awips
|
|
} // namespace scwx
|