1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/***********************************************/
/**
* @file conditionNot.h
*
* @brief The result of the condition is inverted.
*
* @author Torsten Mayer-Guerr
* @date 2019-03-20
*
*/
/***********************************************/
#ifndef __GROOPS_CONDITIONNOT__
#define __GROOPS_CONDITIONNOT__
// Latex documentation
#ifdef DOCSTRING_Condition
static const char *docstringConditionNot = R"(
\subsection{Not}
The result of the condition is inverted.
)";
#endif
/***********************************************/
#include "base/import.h"
#include "classes/condition/condition.h"
/***** CLASS ***********************************/
/** @brief The result of the condition is inverted.
* @ingroup conditionGroup
* @see Condition */
class ConditionNot : public Condition
{
ConditionPtr conditionPtr;
public:
ConditionNot(Config &config);
Bool condition(const VariableList &varList) const;
};
/***********************************************/
/***** Inlines *********************************/
/***********************************************/
inline ConditionNot::ConditionNot(Config &config)
{
try
{
readConfig(config, "condition", conditionPtr, Config::MUSTSET, "", "");
if(isCreateSchema(config)) return;
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
inline Bool ConditionNot::condition(const VariableList &varList) const
{
try
{
return !conditionPtr->condition(varList);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
#endif
|