Moving isActive from radar product view to map settings

This commit is contained in:
Dan Paulat 2021-11-27 19:17:31 -06:00
parent f7f86ec24a
commit b78011a2d3
7 changed files with 35 additions and 30 deletions

View file

@ -0,0 +1,26 @@
#pragma once
namespace scwx
{
namespace qt
{
namespace map
{
struct MapSettings
{
explicit MapSettings() : isActive_ {false} {}
~MapSettings() = default;
MapSettings(const MapSettings&) = delete;
MapSettings& operator=(const MapSettings&) = delete;
MapSettings(MapSettings&&) noexcept = default;
MapSettings& operator=(MapSettings&&) noexcept = default;
bool isActive_;
};
} // namespace map
} // namespace qt
} // namespace scwx