LibraryVersion.cpp 445 B

12345678910111213141516171819
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-05
  6. * Changed: 2023-02-05
  7. *
  8. * */
  9. #include <ls-std/core/LibraryVersion.hpp>
  10. ls::std::core::LibraryVersion::LibraryVersion() = default;
  11. ls::std::core::LibraryVersion::~LibraryVersion() = default;
  12. ::std::string ls::std::core::LibraryVersion::getVersion()
  13. {
  14. return "2023.1.0";
  15. }