mirror of
https://github.com/NixOS/nix.git
synced 2025-11-20 17:29:36 +01:00
14 lines
226 B
C++
14 lines
226 B
C++
#ifndef __REFERENCES_H
|
|
#define __REFERENCES_H
|
|
|
|
#include "types.hh"
|
|
#include "hash.hh"
|
|
|
|
namespace nix {
|
|
|
|
PathSet scanForReferences(const Path & path, const PathSet & refs,
|
|
Hash & hash);
|
|
|
|
}
|
|
|
|
#endif /* !__REFERENCES_H */
|