forked from lix-project/lix
8bcdd36f10
* src/nix-store/Makefile.am (nix_store_SOURCES): Add `xmlgraph.cc' and `xmlgraph.hh'. * src/nix-store/help.txt (Operations): Document `--xml'. * src/nix-store/nix-store.cc (opQuery): Handle `--xml'. * src/nix-store/xmlgraph.cc, src/nix-store/xmlgraph.hh: New files.
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 */
|