summaryrefslogtreecommitdiffstats
path: root/Source/cmIfCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r--Source/cmIfCommand.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h
index 6bb3102..612f57b 100644
--- a/Source/cmIfCommand.h
+++ b/Source/cmIfCommand.h
@@ -55,10 +55,14 @@ class cmIfFunctionBlocker : public cmFunctionBlocker
public:
cmIfFunctionBlocker() {m_Not = false;}
virtual ~cmIfFunctionBlocker() {}
- virtual bool IsFunctionBlocked(const char *name, const std::vector<std::string> &args,
+ virtual bool IsFunctionBlocked(const char *name,
+ const std::vector<std::string> &args,
const cmMakefile &mf) const;
- virtual bool ShouldRemove(const char *name, const std::vector<std::string> &args,
+ virtual bool ShouldRemove(const char *name,
+ const std::vector<std::string> &args,
const cmMakefile &mf) const;
+ virtual void ScopeEnded(const cmMakefile &mf) const;
+
std::string m_Define;
bool m_Not;
};