/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-08 * Changed: 2026-06-23 * * */ #ifndef LS_STD_I_VALIDATOR_HPP #define LS_STD_I_VALIDATOR_HPP #include namespace ls::standard::core::interface_type { class LS_STD_DYNAMIC_GOAL IValidator { public: IValidator(); virtual ~IValidator(); virtual bool isValid() = 0; }; } #endif