forked from lix-project/lix
75068e7d75
* Optimise header file usage a bit. * Compile the parser as C++.
13 lines
190 B
C++
13 lines
190 B
C++
#ifndef __REFERENCES_H
|
|
#define __REFERENCES_H
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
PathSet scanForReferences(const Path & path, const PathSet & refs);
|
|
|
|
}
|
|
|
|
#endif /* !__REFERENCES_H */
|