mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
19 lines
314 B
C++
19 lines
314 B
C++
#pragma once
|
|
|
|
#include "input-accessor.hh"
|
|
|
|
namespace nix {
|
|
|
|
class StorePath;
|
|
class Store;
|
|
|
|
ref<InputAccessor> makeFSInputAccessor(
|
|
const CanonPath & root);
|
|
|
|
ref<InputAccessor> makeStorePathAccessor(
|
|
ref<Store> store,
|
|
const StorePath & storePath);
|
|
|
|
SourcePath getUnfilteredRootPath(CanonPath path);
|
|
|
|
}
|