supercell-wx/scwx-qt/source/scwx/qt/map/placefile_layer.hpp
2023-07-19 23:27:37 -05:00

29 lines
510 B
C++

#pragma once
#include <scwx/qt/map/draw_layer.hpp>
namespace scwx
{
namespace qt
{
namespace map
{
class PlacefileLayer : public DrawLayer
{
public:
explicit PlacefileLayer(std::shared_ptr<MapContext> context);
~PlacefileLayer();
void Initialize() override final;
void Render(const QMapLibreGL::CustomLayerRenderParameters&) override final;
void Deinitialize() override final;
private:
class Impl;
std::unique_ptr<Impl> p;
};
} // namespace map
} // namespace qt
} // namespace scwx