class EE::UI::UIDataBindBool

#include <uidatabind.hpp>

class UIDataBindBool {
public:
    // typedefs

    typedef std::unique_ptr<UIDataBind<bool>> Ptr;

    // methods

    static Ptr New(bool* t, const std::set<UIWidget*>& widgets, const UIDataBind<bool>::Converter& converter = UIDataBind<bool>::converterBool(), const std::string& valueKey = "value");
    static Ptr New(bool* t, UIWidget* widget, const UIDataBind<bool>::Converter& converter = UIDataBind<bool>::converterBool(), const std::string& valueKey = "value");
};