diff options
Diffstat (limited to 'src/nix-store/dotgraph.hh')
-rw-r--r-- | src/nix-store/dotgraph.hh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nix-store/dotgraph.hh b/src/nix-store/dotgraph.hh new file mode 100644 index 000000000000..e2b5fc72fbe1 --- /dev/null +++ b/src/nix-store/dotgraph.hh @@ -0,0 +1,11 @@ +#pragma once + +#include "types.hh" + +namespace nix { + +class Store; + +void printDotGraph(ref<Store> store, const PathSet & roots); + +} |