aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store/xmlgraph.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-store/xmlgraph.hh')
-rw-r--r--src/nix-store/xmlgraph.hh11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nix-store/xmlgraph.hh b/src/nix-store/xmlgraph.hh
new file mode 100644
index 000000000..a6e7d4e28
--- /dev/null
+++ b/src/nix-store/xmlgraph.hh
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "types.hh"
+
+namespace nix {
+
+class Store;
+
+void printXmlGraph(ref<Store> store, const PathSet & roots);
+
+}