2001-04-19 21:39:03 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-19 21:39:03 +00:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-04-19 21:39:03 +00:00
|
|
|
|
2002-01-21 20:30:43 +00:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-04-19 21:39:03 +00:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmFunctionBlocker_h
|
|
|
|
#define cmFunctionBlocker_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
2008-01-23 15:28:26 +00:00
|
|
|
#include "cmExecutionStatus.h"
|
2009-01-21 14:48:20 +00:00
|
|
|
#include "cmListFileCache.h"
|
2001-04-19 21:39:03 +00:00
|
|
|
class cmMakefile;
|
|
|
|
|
|
|
|
/** \class cmFunctionBlocker
|
|
|
|
* \brief A class that defines an interface for blocking cmake functions
|
|
|
|
*
|
|
|
|
* This is the superclass for any classes that need to block a cmake function
|
|
|
|
*/
|
|
|
|
class cmFunctionBlocker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* should a function be blocked
|
|
|
|
*/
|
2002-12-11 23:13:33 +00:00
|
|
|
virtual bool IsFunctionBlocked(const cmListFileFunction& lff,
|
2008-01-23 15:28:26 +00:00
|
|
|
cmMakefile&mf,
|
|
|
|
cmExecutionStatus &status) = 0;
|
2001-04-19 21:39:03 +00:00
|
|
|
|
|
|
|
/**
|
2001-05-04 12:46:05 +00:00
|
|
|
* should this function blocker be removed, useful when one function adds a
|
|
|
|
* blocker and another must remove it
|
2001-04-19 21:39:03 +00:00
|
|
|
*/
|
2002-12-13 14:18:01 +00:00
|
|
|
virtual bool ShouldRemove(const cmListFileFunction&,
|
2002-06-18 21:20:27 +00:00
|
|
|
cmMakefile&) {return false;}
|
2001-05-04 12:46:05 +00:00
|
|
|
|
2001-06-04 14:18:03 +00:00
|
|
|
virtual ~cmFunctionBlocker() {}
|
2009-01-21 14:48:20 +00:00
|
|
|
|
|
|
|
/** Set/Get the context in which this blocker is created. */
|
|
|
|
void SetStartingContext(cmListFileContext const& lfc)
|
|
|
|
{ this->StartingContext = lfc; }
|
|
|
|
cmListFileContext const& GetStartingContext()
|
|
|
|
{ return this->StartingContext; }
|
|
|
|
private:
|
|
|
|
cmListFileContext StartingContext;
|
2001-04-19 21:39:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|