2020-11-15 00:46:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <imgui.h>
|
|
|
|
#include <hex/views/view.hpp>
|
2020-11-15 00:46:38 +01:00
|
|
|
|
2020-11-15 21:31:04 +01:00
|
|
|
#include <array>
|
|
|
|
#include <string>
|
2020-11-15 00:46:38 +01:00
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
namespace prv { class Provider; }
|
|
|
|
|
|
|
|
class ViewTools : public View {
|
|
|
|
public:
|
2020-12-27 15:39:06 +01:00
|
|
|
ViewTools();
|
2020-11-15 00:46:38 +01:00
|
|
|
~ViewTools() override;
|
|
|
|
|
2020-12-22 18:10:01 +01:00
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() override;
|
2020-11-15 00:46:38 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|