diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-09-24 13:53:44 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-10-29 13:25:33 +0100 |
commit | 2d37e88319441958b7eed876042a106e79c7c85d (patch) | |
tree | c03d61b5cd0ba2e8cd605788bc97d25a04b3fd05 /src/libstore/worker-protocol.hh | |
parent | 95c727caef110c03900a77133eb3e873fca7f019 (diff) |
Move most of the daemon implementation to libstore
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r-- | src/libstore/worker-protocol.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index 5ebdfaf13..a03edd10f 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -62,6 +62,9 @@ typedef enum { #define STDERR_RESULT 0x52534c54 +class Store; +class Source; + Path readStorePath(Store & store, Source & from); template<class T> T readStorePaths(Store & store, Source & from); |