forked from lix-project/lix
7a2b566dc8
In the following commits it will become less prevalent.
17 lines
279 B
C++
17 lines
279 B
C++
#pragma once
|
|
|
|
#include "path.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct StorePathWithOutputs
|
|
{
|
|
StorePath path;
|
|
std::set<std::string> outputs;
|
|
|
|
std::string to_string(const Store & store) const;
|
|
};
|
|
|
|
std::pair<std::string_view, StringSet> parsePathWithOutputs(std::string_view s);
|
|
|
|
}
|