2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2008-01-23 18:28:26 +03:00
|
|
|
#ifndef cmExecutionStatus_h
|
|
|
|
#define cmExecutionStatus_h
|
|
|
|
|
2016-09-01 21:05:48 +03:00
|
|
|
#include <cmConfigure.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;
|
2016-09-06 22:25:26 +03:00
|
|
|
this->NestedError = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-09-06 22:25:26 +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;
|
2016-09-06 22:25:26 +03:00
|
|
|
bool NestedError;
|
2008-01-23 18:28:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|