/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-04-09 * Changed: 2024-09-11 * * */ #ifndef LS_STD_JNI_DATE_PARAMETER_MAPPER_HPP #define LS_STD_JNI_DATE_PARAMETER_MAPPER_HPP #include #include #include /* * @doc: class(name: 'JniDateParameterMapper', package: 'time') * @doc: time.JniDateParameterMapper.description('This mapper is converting a date Java class to a date model class of this library.') * */ namespace ls::std::time::experimental { class LS_STD_DYNAMIC_GOAL JniDateParameterMapper { public: JniDateParameterMapper(); ~JniDateParameterMapper(); [[nodiscard]] static ls::std::time::DateParameter toDateParameter(const ls::std::core::experimental::JniClass &_javaClass); }; } #endif