Add layer wrapper and generic layer

This commit is contained in:
Dan Paulat 2021-11-27 11:37:01 -06:00
parent 9ff6eabd2a
commit a010cc55c3
12 changed files with 187 additions and 40 deletions

View file

@ -0,0 +1,23 @@
#include <scwx/qt/map/generic_layer.hpp>
namespace scwx
{
namespace qt
{
namespace map
{
class GenericLayerImpl
{
public:
explicit GenericLayerImpl() {}
~GenericLayerImpl() {}
};
GenericLayer::GenericLayer() : p(std::make_unique<GenericLayerImpl>()) {}
GenericLayer::~GenericLayer() = default;
} // namespace map
} // namespace qt
} // namespace scwx