forked from lix-project/lix
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);
|
||
|
|
||
|
}
|