1
0
mirror of synced 2024-11-27 17:10:51 +01:00
ImHex/plugins/builtin/include/content/views/view_tools.hpp

21 lines
308 B
C++
Raw Normal View History

2020-11-15 00:46:38 +01:00
#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/ui/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
class ViewTools : public View {
public:
ViewTools();
~ViewTools() override = default;
2020-11-15 00:46:38 +01:00
void drawContent() override;
2020-11-15 00:46:38 +01:00
};
}