| 123456789101112131415161718192021222324252627282930313233343536 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Co-Author: Claude Sonnet 4.6 (LLM)
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-04-09
- * Changed: 2026-06-23
- *
- * */
- #ifndef LS_STD_JNI_DATE_PARAMETER_MAPPER_HPP
- #define LS_STD_JNI_DATE_PARAMETER_MAPPER_HPP
- #include <ls-std/core/jni/JniClass.hpp>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <ls-std/time/common/DateParameter.hpp>
- /*
- * @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::standard::time::experimental
- {
- class LS_STD_DYNAMIC_GOAL JniDateParameterMapper
- {
- public:
- JniDateParameterMapper();
- ~JniDateParameterMapper();
- [[nodiscard]] static ls::standard::time::DateParameter toDateParameter(const ls::standard::core::experimental::JniClass &_javaClass);
- };
- }
- #endif
|