diff options
Diffstat (limited to 'include/cru/ui')
-rw-r--r-- | include/cru/ui/style/Condition.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/cru/ui/style/Condition.h b/include/cru/ui/style/Condition.h index b45c0e07..28f42315 100644 --- a/include/cru/ui/style/Condition.h +++ b/include/cru/ui/style/Condition.h @@ -42,6 +42,10 @@ class CRU_UI_API CompoundCondition : public Condition { std::vector<IBaseEvent*> ChangeOn(controls::Control* control) const override; + std::vector<ClonablePtr<Condition>> GetChildren() const { + return conditions_; + } + protected: std::vector<ClonablePtr<Condition>> conditions_; }; |