From b4a17e3a28f31217c79faa160f5e6abd720da054 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Mon, 23 Sep 2024 23:53:01 -0500 Subject: Applying RAII types --- src/imgui_context.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/imgui_context.hpp (limited to 'src/imgui_context.hpp') diff --git a/src/imgui_context.hpp b/src/imgui_context.hpp new file mode 100644 index 0000000..a625865 --- /dev/null +++ b/src/imgui_context.hpp @@ -0,0 +1,16 @@ +#ifndef IMGUI_CONTEXT_HPP +#define IMGUI_CONTEXT_HPP + +namespace bookmouse { + +class ImguiContext { + public: + ImguiContext(); + ~ImguiContext(); + + private: +}; + +} // namespace bookmouse + +#endif -- cgit v1.2.3