blob: 520a711cd519ad528770e0f4c798bfdc857e34a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef IMGUI_CONTEXT_HPP
#define IMGUI_CONTEXT_HPP
#include "sdl_context.hpp"
#include "sdl_main_window.hpp"
#include "gl_context.hpp"
#include <imgui/imgui.h>
namespace bookmouse {
class ImguiContext {
public:
ImguiContext(GlContext& glContext, SdlContext& sdlContext, SdlMainWindow& mainWindow);
~ImguiContext();
const ImGuiIO& getIO();
void setIOFlag(ImGuiConfigFlags_ flag);
private:
};
} // namespace bookmouse
#endif
|