LibraryVersion.hpp 467 B

12345678910111213141516171819202122232425262728
  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-05
  7. *
  8. * */
  9. #ifndef LS_STD_LIBRARY_VERSION_HPP
  10. #define LS_STD_LIBRARY_VERSION_HPP
  11. #include <string>
  12. namespace ls::std::core
  13. {
  14. class LibraryVersion
  15. {
  16. public:
  17. LibraryVersion();
  18. ~LibraryVersion();
  19. static ::std::string getVersion();
  20. };
  21. }
  22. #endif