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