lix/src/libutil/types.hh
2020-04-24 14:57:51 -06:00

29 lines
392 B
C++

#pragma once
#include "ref.hh"
#include <list>
#include <set>
#include <map>
namespace nix {
using std::list;
using std::set;
using std::vector;
typedef list<std::string> Strings;
typedef set<std::string> StringSet;
typedef std::map<std::string, std::string> StringMap;
/* Paths are just strings. */
typedef std::string Path;
typedef list<Path> Paths;
typedef set<Path> PathSet;
}