LibraryVersion.cpp 501 B

1234567891011121314151617181920212223
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Co-Author: Claude Sonnet 4.6 (LLM)
  4. * Company: Lynar Studios
  5. * E-Mail: webmaster@lynarstudios.com
  6. * Created: 2023-02-05
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #include <ls-std/core/LibraryVersion.hpp>
  11. using ls::standard::core::LibraryVersion;
  12. using std::string;
  13. LibraryVersion::LibraryVersion() = default;
  14. LibraryVersion::~LibraryVersion() = default;
  15. string LibraryVersion::getVersion()
  16. {
  17. return "2026.1.0.0";
  18. }