about summary refs log tree commit diff
path: root/third_party/nix/src/nix-store/graphml.hh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/nix-store/graphml.hh')
-rw-r--r--third_party/nix/src/nix-store/graphml.hh11
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/nix/src/nix-store/graphml.hh b/third_party/nix/src/nix-store/graphml.hh
new file mode 100644
index 0000000000..b78df1e49a
--- /dev/null
+++ b/third_party/nix/src/nix-store/graphml.hh
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "types.hh"
+
+namespace nix {
+
+class Store;
+
+void printGraphML(ref<Store> store, const PathSet & roots);
+
+}