IEvaluator.hpp 498 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-08
  6. * Changed: 2023-02-08
  7. *
  8. * */
  9. #ifndef LS_STD_I_EVALUATOR_HPP
  10. #define LS_STD_I_EVALUATOR_HPP
  11. #include <ls-std/os/dynamic-goal.hpp>
  12. namespace ls::std::core::interface_type
  13. {
  14. class LS_STD_DYNAMIC_GOAL IEvaluator
  15. {
  16. public:
  17. IEvaluator();
  18. virtual ~IEvaluator();
  19. virtual void evaluate() = 0;
  20. };
  21. }
  22. #endif