Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-02-04 | More of the same | Eelco Dolstra | 1 | -1/+1 | |
2016-02-04 | StoreAPI -> Store | Eelco Dolstra | 1 | -2/+2 | |
Calling a class an API is a bit redundant... | |||||
2016-02-04 | Eliminate the "store" global variable | Eelco Dolstra | 1 | -1/+3 | |
Also, move a few free-standing functions into StoreAPI and Derivation. Also, introduce a non-nullable smart pointer, ref<T>, which is just a wrapper around std::shared_ptr ensuring that the pointer is never null. (For reference-counted values, this is better than passing a "T&", because the latter doesn't maintain the refcount. Usually, the caller will have a shared_ptr keeping the value alive, but that's not always the case, e.g., when passing a reference to a std::thread via std::bind.) | |||||
2012-07-18 | Use "#pragma once" to prevent repeated header file inclusion | Eelco Dolstra | 1 | -4/+1 | |
2010-05-31 | Add XML output to `nix-store'. | Ludovic Courtès | 1 | -0/+12 | |
* 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. |