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