2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2008-01-23 18:28:26 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2008-01-23 18:28:26 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2008-01-23 18:28:26 +03:00
|
|
|
#ifndef cmExecutionStatus_h
|
|
|
|
#define cmExecutionStatus_h
|
|
|
|
|
|
|
|
#include "cmObject.h"
|
|
|
|
|
|
|
|
/** \class cmExecutionStatus
|
|
|
|
* \brief Superclass for all command status classes
|
|
|
|
*
|
|
|
|
* when a command is involked it may set values on a command status instance
|
|
|
|
*/
|
|
|
|
class cmExecutionStatus : public cmObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmTypeMacro(cmExecutionStatus, cmObject);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
cmExecutionStatus() { this->Clear();};
|
2012-08-13 21:42:58 +04:00
|
|
|
|
|
|
|
virtual void SetReturnInvoked(bool val)
|
2008-01-23 18:28:26 +03:00
|
|
|
{ this->ReturnInvoked = val; }
|
|
|
|
virtual bool GetReturnInvoked()
|
|
|
|
{ return this->ReturnInvoked; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
|
|
|
virtual void SetBreakInvoked(bool val)
|
2008-01-23 18:28:26 +03:00
|
|
|
{ this->BreakInvoked = val; }
|
|
|
|
virtual bool GetBreakInvoked()
|
|
|
|
{ return this->BreakInvoked; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual void Clear()
|
2008-03-07 16:40:36 +03:00
|
|
|
{
|
|
|
|
this->ReturnInvoked = false;
|
|
|
|
this->BreakInvoked = false;
|
|
|
|
this->NestedError = false;
|
|
|
|
}
|
|
|
|
virtual void SetNestedError(bool val) { this->NestedError = val; }
|
|
|
|
virtual bool GetNestedError() { return this->NestedError; }
|
2008-01-23 18:28:26 +03:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
protected:
|
|
|
|
bool ReturnInvoked;
|
|
|
|
bool BreakInvoked;
|
2008-03-07 16:40:36 +03:00
|
|
|
bool NestedError;
|
2008-01-23 18:28:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|