From a5cf227503d40305f658a2af1021d759782816b7 Mon Sep 17 00:00:00 2001 From: omar Date: Wed, 21 Nov 2018 18:30:36 +0100 Subject: [PATCH] Added link to experimental imgui_scoped.h PR/thread (#2197, #2096) --- misc/README.txt | 2 +- misc/cpp/README.txt | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 misc/cpp/README.txt diff --git a/misc/README.txt b/misc/README.txt index 4bd27452..ff23d7fc 100644 --- a/misc/README.txt +++ b/misc/README.txt @@ -1,6 +1,6 @@ misc/cpp/ - InputText() wrappers for C++ standard library (STL) types (std::string, etc.). + InputText() wrappers for C++ standard library (STL) type: std::string. This is also an example of how you may wrap your own similar types. misc/fonts/ diff --git a/misc/cpp/README.txt b/misc/cpp/README.txt new file mode 100644 index 00000000..dedfa747 --- /dev/null +++ b/misc/cpp/README.txt @@ -0,0 +1,10 @@ + +imgui_stdlib.h + imgui_stdlib.cpp + InputText() wrappers for C++ standard library (STL) type: std::string. + This is also an example of how you may wrap your own similar types. + +imgui_scoped.h + [Experimental, not currently in main repository] + Additional header file with some RAII-style wrappers for common ImGui functions. + Try by merging: https://github.com/ocornut/imgui/pull/2197 + Discuss at: https://github.com/ocornut/imgui/issues/2096