summaryrefslogtreecommitdiff
path: root/src/buildtool/crypto/hash_impl_git.hpp
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2022-02-22 17:03:21 +0100
committerKlaus Aehlig <klaus.aehlig@huawei.com>2022-02-22 17:03:21 +0100
commit619def44c1cca9f3cdf63544d5f24f2c7a7d9b77 (patch)
tree01868de723cb82c86842f33743fa7b14e24c1fa3 /src/buildtool/crypto/hash_impl_git.hpp
downloadjustbuild-619def44c1cca9f3cdf63544d5f24f2c7a7d9b77.tar.gz
Initial self-hosting commit
This is the initial version of our tool that is able to build itself. In can be bootstrapped by ./bin/bootstrap.py Co-authored-by: Oliver Reiche <oliver.reiche@huawei.com> Co-authored-by: Victor Moreno <victor.moreno1@huawei.com>
Diffstat (limited to 'src/buildtool/crypto/hash_impl_git.hpp')
-rw-r--r--src/buildtool/crypto/hash_impl_git.hpp10
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