LibraryVersion.hpp 539 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: 2023-02-06
  7. *
  8. * */
  9. #ifndef LS_STD_LIBRARY_VERSION_HPP
  10. #define LS_STD_LIBRARY_VERSION_HPP
  11. #include <ls-std/os/dynamic-goal.hpp>
  12. #include <string>
  13. namespace ls::std::core
  14. {
  15. class LS_STD_DYNAMIC_GOAL LibraryVersion
  16. {
  17. public:
  18. LibraryVersion();
  19. ~LibraryVersion();
  20. [[nodiscard]] static ::std::string getVersion();
  21. };
  22. }
  23. #endif