NullPointerEvaluator.hpp 883 B

123456789101112131415161718192021222324252627282930313233343536
  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-10
  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 <memory>
  13. #include <string>
  14. namespace ls::std::core
  15. {
  16. class NullPointerEvaluator : public ls::std::core::interface_type::IEvaluator // TODO: add missing dynamic goal
  17. {
  18. public:
  19. explicit NullPointerEvaluator(const ::std::shared_ptr<void> &_argument);
  20. explicit NullPointerEvaluator(const ::std::shared_ptr<void> &_argument, ::std::string _message);
  21. ~NullPointerEvaluator() override;
  22. void evaluate() override;
  23. private:
  24. ::std::shared_ptr<void> argument{};
  25. ::std::string message{};
  26. };
  27. }
  28. #endif