1234567891011121314151617181920212223242526272829 |
- #ifndef LS_STD_LIBRARY_VERSION_HPP
- #define LS_STD_LIBRARY_VERSION_HPP
- #include <ls-std/os/dynamic-goal.hpp>
- #include <string>
- namespace ls::std::core
- {
- class LS_STD_DYNAMIC_GOAL LibraryVersion
- {
- public:
- LibraryVersion();
- ~LibraryVersion();
- [[nodiscard]] static ::std::string getVersion();
- };
- }
- #endif
|