mirror of
https://github.com/NixOS/nix.git
synced 2025-12-16 14:01:05 +01:00
16 lines
242 B
C++
16 lines
242 B
C++
#pragma once
|
|
|
|
#include "source-path.hh"
|
|
|
|
namespace nix {
|
|
|
|
class StorePath;
|
|
class Store;
|
|
|
|
ref<SourceAccessor> makeStorePathAccessor(
|
|
ref<Store> store,
|
|
const StorePath & storePath);
|
|
|
|
SourcePath getUnfilteredRootPath(CanonPath path);
|
|
|
|
}
|