mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 21:30:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			510 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			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
 | 
