/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-08 * Changed: 2026-06-23 * * */ #ifndef LS_STD_NULL_POINTER_EVALUATOR_HPP #define LS_STD_NULL_POINTER_EVALUATOR_HPP #include #include #include #include /* * @doc: class(name: 'NullPointerEvaluator', package: 'core') * @doc: core.NullPointerEvaluator.description('This class evaluates whether a passed shared pointer reference is null.') * */ namespace ls::standard::core { class LS_STD_DYNAMIC_GOAL NullPointerEvaluator : public ls::standard::core::interface_type::IEvaluator { public: explicit NullPointerEvaluator(const ::std::shared_ptr &_argument); explicit NullPointerEvaluator(const ::std::shared_ptr &_argument, ::std::string _message); ~NullPointerEvaluator() noexcept override; void evaluate() override; private: ::std::shared_ptr argument{}; ::std::string message{}; }; } #endif