diff options
Diffstat (limited to 'include/diceparserhelper.h')
| -rw-r--r-- | include/diceparserhelper.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/diceparserhelper.h b/include/diceparserhelper.h index 4a481c1..1ae5c3f 100644 --- a/include/diceparserhelper.h +++ b/include/diceparserhelper.h @@ -1,9 +1,11 @@ #ifndef DICEPARSERHELPER_H #define DICEPARSERHELPER_H +class ValidatorList; +class ExecutionNode; + namespace Dice { - enum class CONDITION_STATE : int { ERROR_STATE, @@ -51,5 +53,11 @@ enum ConditionType AllOfThem, OnScalar }; + +struct CaseInfo +{ + ValidatorList* validatorList; + ExecutionNode* node; +}; } // namespace Dice #endif // DICEPARSERHELPER_H |