mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 18:26:16 +02:00
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);
|
||
|
|
||
|
}
|