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