1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 23:40:24 -04:00
nix/src/nix-store/dotgraph.hh
Eelco Dolstra fa7cd5369b StoreAPI -> Store
Calling a class an API is a bit redundant...
2016-02-04 14:48:42 +01:00

12 lines
127 B
C++

#pragma once
#include "types.hh"
namespace nix {
class Store;
void printDotGraph(Store & store, const PathSet & roots);
}