diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-09-23 23:53:01 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-09-23 23:53:01 -0500 |
commit | b4a17e3a28f31217c79faa160f5e6abd720da054 (patch) | |
tree | 9e95862b192aa6c14b86a820ef77f290e46969c8 /src/imgui_context.hpp | |
parent | cae8b633fc8723bcc35944298335ad48844d2bf0 (diff) |
Applying RAII types
Diffstat (limited to 'src/imgui_context.hpp')
-rw-r--r-- | src/imgui_context.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
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 |