diff options
Diffstat (limited to 'src/buildtool/crypto/hash_impl_git.hpp')
-rw-r--r-- | src/buildtool/crypto/hash_impl_git.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/buildtool/crypto/hash_impl_git.hpp b/src/buildtool/crypto/hash_impl_git.hpp new file mode 100644 index 00000000..be0738da --- /dev/null +++ b/src/buildtool/crypto/hash_impl_git.hpp @@ -0,0 +1,10 @@ +#ifndef INCLUDED_SRC_BUILDTOOL_CRYPTO_HASH_IMPL_GIT_HPP +#define INCLUDED_SRC_BUILDTOOL_CRYPTO_HASH_IMPL_GIT_HPP + +#include <memory> + +#include "src/buildtool/crypto/hash_impl.hpp" + +[[nodiscard]] extern auto CreateHashImplGit() -> std::unique_ptr<IHashImpl>; + +#endif // INCLUDED_SRC_BUILDTOOL_CRYPTO_HASH_IMPL_GIT_HPP |