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
|
|
|
|
|
2015-05-16 08:06:59 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2008-01-23 18:28:26 +03:00
|
|
|
|
|
|
|
/** \class cmExecutionStatus
|
|
|
|
* \brief Superclass for all command status classes
|
|
|
|
*
|
|
|
|
* when a command is involked it may set values on a command status instance
|
|
|
|
*/
|
2015-05-16 08:06:59 +03:00
|
|
|
class cmExecutionStatus
|
2008-01-23 18:28:26 +03:00
|
|
|
{
|
|
|
|
public:
|
2015-05-16 08:06:59 +03:00
|
|
|
cmExecutionStatus() { this->Clear(); }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void SetReturnInvoked(bool val) { this->ReturnInvoked = val; }
|
|
|
|
bool GetReturnInvoked() { return this->ReturnInvoked; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void SetBreakInvoked(bool val) { this->BreakInvoked = val; }
|
|
|
|
bool GetBreakInvoked() { return this->BreakInvoked; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void SetContinueInvoked(bool val) { this->ContinueInvoked = val; }
|
|
|
|
bool GetContinueInvoked() { return this->ContinueInvoked; }
|
2014-11-29 19:56:18 +03:00
|
|
|
|
2015-05-16 08:06:39 +03:00
|
|
|
void Clear()
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2008-03-07 16:40:36 +03:00
|
|
|
this->ReturnInvoked = false;
|
|
|
|
this->BreakInvoked = false;
|
2014-11-29 19:56:18 +03:00
|
|
|
this->ContinueInvoked = false;
|
2008-03-07 16:40:36 +03:00
|
|
|
this->NestedError = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-05-16 08:06:39 +03:00
|
|
|
void SetNestedError(bool val) { this->NestedError = val; }
|
|
|
|
bool GetNestedError() { return this->NestedError; }
|
2008-01-23 18:28:26 +03:00
|
|
|
|
2015-05-16 08:06:39 +03:00
|
|
|
private:
|
2008-01-23 18:28:26 +03:00
|
|
|
bool ReturnInvoked;
|
|
|
|
bool BreakInvoked;
|
2014-11-29 19:56:18 +03:00
|
|
|
bool ContinueInvoked;
|
2008-03-07 16:40:36 +03:00
|
|
|
bool NestedError;
|
2008-01-23 18:28:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|