Rename IEM warnings provider to IEM API provider

This commit is contained in:
Dan Paulat 2025-02-02 01:42:45 -06:00
parent cf87cc9bf0
commit f9e79b3e40
5 changed files with 25 additions and 25 deletions

View file

@ -1,39 +0,0 @@
#pragma once
#include <scwx/awips/text_product_file.hpp>
#include <memory>
#include <string>
namespace scwx::provider
{
/**
* @brief Warnings Provider
*/
class IemWarningsProvider
{
public:
explicit IemWarningsProvider();
~IemWarningsProvider();
IemWarningsProvider(const IemWarningsProvider&) = delete;
IemWarningsProvider& operator=(const IemWarningsProvider&) = delete;
IemWarningsProvider(IemWarningsProvider&&) noexcept;
IemWarningsProvider& operator=(IemWarningsProvider&&) noexcept;
static std::vector<std::string>
ListTextProducts(std::chrono::sys_time<std::chrono::days> date,
std::optional<std::string_view> cccc = {},
std::optional<std::string_view> pil = {});
static std::vector<std::shared_ptr<awips::TextProductFile>>
LoadTextProducts(const std::vector<std::string>& textProducts);
private:
class Impl;
std::unique_ptr<Impl> p;
};
} // namespace scwx::provider