IndexOutOfBoundsEvaluator.hpp 1004 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-10
  6. * Changed: 2024-09-09
  7. *
  8. * */
  9. #ifndef LS_STD_INDEX_OUT_OF_BOUNDS_EVALUATOR_EVALUATOR_HPP
  10. #define LS_STD_INDEX_OUT_OF_BOUNDS_EVALUATOR_EVALUATOR_HPP
  11. #include <ls-std/core/interface/IEvaluator.hpp>
  12. #include <ls-std/os/dynamic-goal.hpp>
  13. #include <string>
  14. /*
  15. * @doc: class(name: 'IndexOutOfBoundsEvaluator', package: 'core')
  16. * */
  17. namespace ls::std::core
  18. {
  19. class LS_STD_DYNAMIC_GOAL IndexOutOfBoundsEvaluator : public ls::std::core::interface_type::IEvaluator
  20. {
  21. public:
  22. explicit IndexOutOfBoundsEvaluator(size_t _index, size_t _size);
  23. explicit IndexOutOfBoundsEvaluator(size_t _index, size_t _size, ::std::string _message);
  24. ~IndexOutOfBoundsEvaluator() noexcept override;
  25. void evaluate() override;
  26. private:
  27. size_t index{};
  28. ::std::string message{};
  29. size_t size{};
  30. };
  31. }
  32. #endif