mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
Add layer wrapper and generic layer
This commit is contained in:
parent
9ff6eabd2a
commit
a010cc55c3
12 changed files with 187 additions and 40 deletions
23
scwx-qt/source/scwx/qt/map/generic_layer.cpp
Normal file
23
scwx-qt/source/scwx/qt/map/generic_layer.cpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue