LibraryVersion.hpp 458 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2021-05-02
  6. * Changed: 2022-05-09
  7. *
  8. * */
  9. #ifndef LS_STD_LIBRARY_VERSION_HPP
  10. #define LS_STD_LIBRARY_VERSION_HPP
  11. #include <string>
  12. namespace ls
  13. {
  14. namespace std
  15. {
  16. namespace core
  17. {
  18. static ::std::string getVersion()
  19. {
  20. return "2022.1.0";
  21. }
  22. }
  23. }
  24. }
  25. #endif