summaryrefslogtreecommitdiffstats
path: root/Source/cmListFileCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmListFileCache.h')
-rw-r--r--Source/cmListFileCache.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h
index 039a52d..b1eaa81 100644
--- a/Source/cmListFileCache.h
+++ b/Source/cmListFileCache.h
@@ -26,6 +26,8 @@
* cmake list files.
*/
+class cmMakefile;
+
struct cmListFileArgument
{
cmListFileArgument(): Value(), Quoted(false), FilePath(0), Line(0) {}
@@ -62,7 +64,9 @@ struct cmListFile
:ModifiedTime(0)
{
}
- bool ParseFile(const char* path, bool requireProjectCommand);
+ bool ParseFile(const char* path,
+ bool topLevel,
+ cmMakefile *mf);
long int ModifiedTime;
std::vector<cmListFileFunction> Functions;