From 5f5cab0ac7c26783a4544feb31708d4f8e0f4a51 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 23 Jun 2003 13:27:59 +0000 Subject: * A function to restore from a Nix archive. * addValue() can now import any dumpable FS object. --- src/archive.hh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/archive.hh') diff --git a/src/archive.hh b/src/archive.hh index d351c6bf63..7d9b1e2b56 100644 --- a/src/archive.hh +++ b/src/archive.hh @@ -48,7 +48,7 @@ struct DumpSink void dumpPath(const string & path, DumpSink & sink); -struct ReadSource +struct RestoreSource { /* The callee should store exactly *len bytes in the buffer pointed to by data. It should block if that much data is not @@ -56,3 +56,5 @@ struct ReadSource available. */ virtual void operator () (const unsigned char * data, unsigned int len) = 0; }; + +void restorePath(const string & path, RestoreSource & source); -- cgit 1.4.1