12345678910111213141516171819202122232425262728 |
- #ifndef LS_STD_LIBRARY_VERSION_HPP
- #define LS_STD_LIBRARY_VERSION_HPP
- #include <string>
- namespace ls::std::core
- {
- class LibraryVersion
- {
- public:
- LibraryVersion();
- ~LibraryVersion();
- static ::std::string getVersion();
- };
- }
- #endif
|