Refactoring AWS level 2 data provider, pushing up common functions

This commit is contained in:
Dan Paulat 2022-05-30 00:53:22 -05:00
parent 394aba2d83
commit c5c54fbfa2
13 changed files with 512 additions and 439 deletions

View file

@ -0,0 +1,26 @@
#include <scwx/provider/nexrad_data_provider.hpp>
namespace scwx
{
namespace provider
{
static const std::string logPrefix_ = "scwx::provider::nexrad_data_provider";
class NexradDataProvider::Impl
{
public:
explicit Impl() {}
~Impl() {}
};
NexradDataProvider::NexradDataProvider() : p(std::make_unique<Impl>()) {}
NexradDataProvider::~NexradDataProvider() = default;
NexradDataProvider::NexradDataProvider(NexradDataProvider&&) noexcept = default;
NexradDataProvider&
NexradDataProvider::operator=(NexradDataProvider&&) noexcept = default;
} // namespace provider
} // namespace scwx