mirror of https://github.com/WerWolv/ImHex.git
25 lines
358 B
C++
25 lines
358 B
C++
|
#pragma once
|
||
|
|
||
|
#include <hex.hpp>
|
||
|
|
||
|
#include <imgui.h>
|
||
|
#include <hex/views/view.hpp>
|
||
|
|
||
|
#include <array>
|
||
|
#include <string>
|
||
|
|
||
|
namespace hex {
|
||
|
|
||
|
namespace prv { class Provider; }
|
||
|
|
||
|
class ViewTools : public View {
|
||
|
public:
|
||
|
ViewTools();
|
||
|
~ViewTools() override;
|
||
|
|
||
|
void drawContent() override;
|
||
|
void drawMenu() override;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|