#pragma once #include "Section.h" #include "Symbol.h" #include namespace mapfileparser { struct MapFile { std::vector
sections; std::vector symbols; }; }