mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
13 lines
155 B
C++
13 lines
155 B
C++
|
#ifndef __XMLGRAPH_H
|
||
|
#define __XMLGRAPH_H
|
||
|
|
||
|
#include "types.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
void printXmlGraph(const PathSet & roots);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* !__XMLGRAPH_H */
|