From 67684b3a9a7205cef15f5978b5adc4df632f5af5 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 21 Jul 2019 13:54:41 +0100 Subject: Basically all the core functionality --- src/git.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/git.h') diff --git a/src/git.h b/src/git.h index c0ae4e3..9107f8b 100644 --- a/src/git.h +++ b/src/git.h @@ -23,6 +23,8 @@ namespace GitFS { } } + [[noreturn]] void ErrorToSystemError(const Error & e); + template using TPtr = std::shared_ptr; @@ -83,6 +85,13 @@ namespace GitFS { } } +namespace NetFS { + struct Attr; + Attr & operator<<(Attr &, const git_tree_entry &); + Attr & operator<<(Attr &, const git_commit &); + Attr & operator<<(Attr &, const git_blob &); +} + namespace std { std::ostream & operator<<(std::ostream &, const git_oid &); } -- cgit v1.2.3