mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-09 04:29:04 +03:00
14 lines
257 B
C++
14 lines
257 B
C++
#ifndef CLRSYNC_CORE_VERSION_HPP
|
|
#define CLRSYNC_CORE_VERSION_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace clrsync::core
|
|
{
|
|
|
|
const std::string GIT_SEMVER = "@SEMVER@";
|
|
|
|
const std::string version_string();
|
|
} // namespace clrsync::core
|
|
|
|
#endif // CLRSYNC_CORE_VERSION_HPP
|