#pragma once #include "fesa/core/status.h" #include "fesa/io/abaqus/input_syntax.hpp" #include "fesa/model/domain.h" namespace fesa { // Converts syntax-only blocks into the approved immutable B33 semantic model. class AbaqusDomainMapper { public: Result map(const ParsedInput& input) const; }; } // namespace fesa