#pragma once #include "fesa/core/status.h" #include "fesa/io/abaqus/input_syntax.hpp" #include namespace fesa { // Reads only physical keyword/data/comment syntax; semantic policy is applied // later by AbaqusDomainMapper. class AbaqusInputReader { public: Result read(const std::filesystem::path& inputPath) const; }; } // namespace fesa