mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
12 lines
200 B
C++
12 lines
200 B
C++
|
#pragma once
|
||
|
|
||
|
#include "fs-accessor.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
/* Return an object that provides access to the contents of a NAR
|
||
|
file. */
|
||
|
ref<FSAccessor> makeNarAccessor(ref<const std::string> nar);
|
||
|
|
||
|
}
|