Searched defs:ImGuiTextRange (Results 1 – 1 of 1) sorted by relevance
2085 struct ImGuiTextRange struct2087 const char* b;2088 const char* e;2090 ImGuiTextRange() { b = e = NULL; } in ImGuiTextRange() argument2091 ImGuiTextRange(const char* _b, const char* _e) { b = _b; e = _e; } in ImGuiTextRange() argument2092 bool empty() const { return b == e; } in empty()