12 lines
146 B
C++
12 lines
146 B
C++
|
#pragma once
|
||
|
|
||
|
#include "types.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
class Store;
|
||
|
|
||
|
void printGraphML(ref<Store> store, const PathSet& roots);
|
||
|
|
||
|
} // namespace nix
|