2006-07-26 15:05:15 +00:00
|
|
|
#ifndef __ATTR_PATH_H
|
|
|
|
#define __ATTR_PATH_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "eval.hh"
|
|
|
|
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2010-04-07 15:47:06 +00:00
|
|
|
void findAlongAttrPath(EvalState & state, const string & attrPath,
|
2010-04-12 18:30:11 +00:00
|
|
|
const Bindings & autoArgs, Expr * e, Value & v);
|
2006-07-26 15:05:15 +00:00
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-07-26 15:05:15 +00:00
|
|
|
|
|
|
|
#endif /* !__ATTR_PATH_H */
|