1
0
mirror of synced 2024-12-03 19:57:20 +01:00
ImHex/plugins/builtin/include/content/views/view_patches.hpp

22 lines
418 B
C++
Raw Normal View History

2020-11-29 02:06:41 +01:00
#pragma once
#include <hex.hpp>
#include <hex/ui/view.hpp>
2020-11-29 02:06:41 +01:00
2021-12-07 22:47:41 +01:00
namespace hex::plugin::builtin {
2020-11-29 02:06:41 +01:00
class ViewPatches : public View::Window {
2020-11-29 02:06:41 +01:00
public:
explicit ViewPatches();
2022-09-28 15:01:43 +02:00
~ViewPatches() override = default;
2020-11-29 02:06:41 +01:00
void drawContent() override;
void drawAlwaysVisibleContent() override;
2020-11-29 02:06:41 +01:00
private:
u64 m_selectedPatch = 0x00;
PerProvider<u32> m_numOperations;
2020-11-29 02:06:41 +01:00
};
}