#pragma once #include #include namespace Execute { struct State { unsigned currentStatement; unsigned nextStatement; std::unordered_map const & labelStatementIndice; State(std::unordered_map const & labelStatementIndice); }; }