forked from lix-project/lix
73c2ae43f0
This prints the references graph of the store paths in the graphML format [1]. The graphML format is supported by several graph tools such as the Python Networkx library or the Apache Thinkerpop project. [1] http://graphml.graphdrawing.org
12 lines
129 B
C++
12 lines
129 B
C++
#pragma once
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
class Store;
|
|
|
|
void printGraphML(ref<Store> store, const PathSet & roots);
|
|
|
|
}
|