NullPointerEvaluator.hpp 1.1 KB

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