snix/third_party/nix/src/libexpr/names.hh
Vincent Ambo 838f86b0fd style(3p/nix): Remove 'using std::*' from types.hh
It is considered bad form to use things from includes in headers, as
these directives propagate to everywhere else and can make it
confusing.

types.hh (which is includes almost literally everywhere) had some of
these directives, which this commit removes.
2020-05-24 22:29:21 +01:00

31 lines
620 B
C++

#pragma once
#include <memory>
#include <regex>
#include "types.hh"
namespace nix {
struct DrvName {
std::string fullName;
std::string name;
std::string version;
unsigned int hits;
DrvName();
DrvName(const std::string& s);
bool matches(DrvName& n);
private:
std::unique_ptr<std::regex> regex;
};
typedef std::list<DrvName> DrvNames;
std::string nextComponent(std::string::const_iterator& p,
const std::string::const_iterator end);
int compareVersions(const std::string& v1, const std::string& v2);
DrvNames drvNamesFromArgs(const Strings& opArgs);
} // namespace nix