Rename existing AlertLayer to AlertLayerOld, prepare AlertLayer skeleton

This commit is contained in:
Dan Paulat 2024-06-30 00:21:10 -05:00
parent 2e1b537c87
commit 044e6d6885
6 changed files with 587 additions and 462 deletions

View file

@ -0,0 +1,34 @@
#pragma once
#include <scwx/awips/phenomenon.hpp>
#include <scwx/qt/map/map_context.hpp>
#include <memory>
#include <string>
#include <vector>
namespace scwx
{
namespace qt
{
namespace map
{
class AlertLayerOldImpl;
class AlertLayerOld
{
public:
explicit AlertLayerOld(std::shared_ptr<MapContext> context);
~AlertLayerOld();
std::vector<std::string> AddLayers(awips::Phenomenon phenomenon,
const std::string& before = {});
private:
std::unique_ptr<AlertLayerOldImpl> p;
};
} // namespace map
} // namespace qt
} // namespace scwx