tpecholt / imrad

ImRAD is a GUI builder for the ImGui library
GNU General Public License v3.0
914 stars 29 forks source link

Where is misc/cpp/imgui_stdlib.h? #3

Closed RicoP closed 1 year ago

RicoP commented 1 year ago

imrad.h includes misc/cpp/imgui_stdlib.h

I don't know where this file is. Do I need an extra dependency?

ocornut commented 1 year ago

It is in the imgui project: https://github.com/ocornut/imgui/tree/master/misc/cpp

I guess the project expect you to have your imgui/ folder in include paths.

tpecholt commented 1 year ago

imgui_stdlib.h is needed as it implements std::string version of Input widget which would otherwise be cumbersome to write.

Let me know if there are any issues with this approach otherwise I will close the ticket.

I plan to move other #includes from the generated header file to imrad.h as well I think it will make it look more concise that way