mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-08 20:19:04 +03:00
15 lines
268 B
C++
15 lines
268 B
C++
#ifndef CLRSYNC_CORE_VERSION_HPP
|
|
#define CLRSYNC_CORE_VERSION_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace clrsync::core
|
|
{
|
|
|
|
const std::string GIT_SEMVER = "0.1.6+git.g613c2c8";
|
|
|
|
const std::string version_string();
|
|
} // namespace clrsync::core
|
|
|
|
#endif // CLRSYNC_CORE_VERSION_HPP
|