1
0
mirror of synced 2024-11-18 12:57:12 +01:00
ImHex/plugins/builtin/include/content/views/view_tools.hpp

25 lines
375 B
C++
Raw Normal View History

2020-11-15 00:46:38 +01:00
#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/views/view.hpp>
2020-11-15 00:46:38 +01:00
#include <array>
#include <string>
2020-11-15 00:46:38 +01:00
2021-12-07 22:47:41 +01:00
namespace hex::plugin::builtin {
2020-11-15 00:46:38 +01:00
namespace prv { class Provider; }
class ViewTools : public View {
public:
ViewTools();
2020-11-15 00:46:38 +01:00
~ViewTools() override;
void drawContent() override;
void drawMenu() override;
2020-11-15 00:46:38 +01:00
};
}