mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 23:30:04 +00:00
Create IemWarningsProvider class for archive warnings
This commit is contained in:
parent
d34cd68471
commit
895e760fee
3 changed files with 59 additions and 0 deletions
28
wxdata/include/scwx/provider/iem_warnings_provider.hpp
Normal file
28
wxdata/include/scwx/provider/iem_warnings_provider.hpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
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;
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
std::unique_ptr<Impl> p;
|
||||
};
|
||||
|
||||
} // namespace scwx::provider
|
||||
Loading…
Add table
Add a link
Reference in a new issue