#pragma once #include #include #include using namespace std; class LayerTempPointConfig { public: struct LayerRegion { unsigned int startIndex=0; unsigned int endIndex=0; }; struct TempPoint { int x=0; int y=0; }; LayerTempPointConfig(); ~LayerTempPointConfig(); map m_LayerRegions; map*> m_LayerTempPoints; };