Add additional alert display columns

- State, counties, start and end time
This commit is contained in:
Dan Paulat 2022-10-14 23:41:25 -05:00
parent 8fe7d5da6e
commit fdd981899f
8 changed files with 126 additions and 15 deletions

View file

@ -0,0 +1,26 @@
#include <scwx/util/strings.hpp>
namespace scwx
{
namespace util
{
std::string ToString(const std::vector<std::string>& v)
{
std::string value {};
for (const std::string& s : v)
{
if (!value.empty())
{
value += ", ";
}
value += s;
}
return value;
}
} // namespace util
} // namespace scwx