NullPointerEvaluator.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Co-Author: Claude Sonnet 4.6 (LLM)
  4. * Company: Lynar Studios
  5. * E-Mail: webmaster@lynarstudios.com
  6. * Created: 2023-02-08
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #ifndef LS_STD_NULL_POINTER_EVALUATOR_HPP
  11. #define LS_STD_NULL_POINTER_EVALUATOR_HPP
  12. #include <ls-std/core/interface/IEvaluator.hpp>
  13. #include <ls-std/os/dynamic-goal.hpp>
  14. #include <memory>
  15. #include <string>
  16. /*
  17. * @doc: class(name: 'NullPointerEvaluator', package: 'core')
  18. * @doc: core.NullPointerEvaluator.description('This class evaluates whether a passed shared pointer reference is null.')
  19. * */
  20. namespace ls::standard::core
  21. {
  22. class LS_STD_DYNAMIC_GOAL NullPointerEvaluator : public ls::standard::core::interface_type::IEvaluator
  23. {
  24. public:
  25. explicit NullPointerEvaluator(const ::std::shared_ptr<void> &_argument);
  26. explicit NullPointerEvaluator(const ::std::shared_ptr<void> &_argument, ::std::string _message);
  27. ~NullPointerEvaluator() noexcept override;
  28. void evaluate() override;
  29. private:
  30. ::std::shared_ptr<void> argument{};
  31. ::std::string message{};
  32. };
  33. }
  34. #endif