12345678910111213141516171819202122232425262728 |
- /*
- * 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 <ls-std/os/dynamic-goal.hpp>
- namespace ls::std::core::interface_type
- {
- class LS_STD_DYNAMIC_GOAL IValidator
- {
- public:
- IValidator();
- virtual ~IValidator();
- virtual bool isValid() = 0;
- };
- }
- #endif
|