diff options
Diffstat (limited to 'gui/objects.hpp')
-rw-r--r-- | gui/objects.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gui/objects.hpp b/gui/objects.hpp index 624db07f9..99bf0dbfa 100644 --- a/gui/objects.hpp +++ b/gui/objects.hpp @@ -151,8 +151,10 @@ protected: std::vector<Condition> mConditions; protected: - bool isMounted(std::string vol); - bool isConditionTrue(Condition* condition); + static void LoadConditions(xml_node<>* node, std::vector<Condition>& conditions); + static bool isMounted(std::string vol); + static bool isConditionTrue(Condition* condition); + static bool UpdateConditions(std::vector<Condition>& conditions, const std::string& varName); bool mConditionsResult; }; |