class EE::UI::UIDataBindString
#include <uidatabind.hpp>
class UIDataBindString {
public:
// typedefs
typedef std::unique_ptr<UIDataBind<std::string>> Ptr;
// methods
static Ptr New(std::string* t, const std::set<UIWidget*>& widgets, const UIDataBind<std::string>::Converter& converter = UIDataBind<std::string>::converterString(), const std::string& valueKey = "text", const Event::EventType& eventType = Event::OnTextChanged);
static Ptr New(std::string* t, UIWidget* widget, const UIDataBind<std::string>::Converter& converter = UIDataBind<std::string>::converterString(), const std::string& valueKey = "text", const Event::EventType& eventType = Event::OnTextChanged);
};