diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-26 10:56:10 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-02 06:56:57 (GMT) |
commit | 348354333a82ce98d733dc2ee939186c53c506f9 (patch) | |
tree | 6cccb581d9ce5af3498dab650a30348ad0cad9a6 /Source/cmState.h | |
parent | af0de01c6b3395fb1dba5d2ee0a94c19a9b464e9 (diff) | |
download | CMake-348354333a82ce98d733dc2ee939186c53c506f9.zip CMake-348354333a82ce98d733dc2ee939186c53c506f9.tar.gz CMake-348354333a82ce98d733dc2ee939186c53c506f9.tar.bz2 |
cmState: Add Type for policy scope.
Diffstat (limited to 'Source/cmState.h')
-rw-r--r-- | Source/cmState.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmState.h b/Source/cmState.h index 23fbc79..63b60ef 100644 --- a/Source/cmState.h +++ b/Source/cmState.h @@ -37,7 +37,8 @@ public: FunctionCallType, MacroCallType, CallStackType, - InlineListFileType + InlineListFileType, + PolicyScopeType }; class Directory; @@ -148,6 +149,7 @@ public: const std::string& entryPointCommand, long entryPointLine, std::string const& fileName); + Snapshot CreatePolicyScopeSnapshot(Snapshot originSnapshot); Snapshot Pop(Snapshot originSnapshot); enum CacheEntryType{ BOOL=0, PATH, FILEPATH, STRING, INTERNAL,STATIC, |