| 72 | } |
| 73 | |
| 74 | inline bool InputText(const char* label, std::string &str, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL) |
| 75 | { |
| 76 | return InputText( label, &str, flags, callback, user_data ); |
| 77 | } |
| 78 | |
| 79 | |
| 80 | /// similar to ImGui::DragFloat but |
no outgoing calls
no test coverage detected