mirror of https://github.com/WerWolv/ImHex.git
28 lines
416 B
C++
28 lines
416 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <hex.hpp>
|
||
|
|
||
|
#include <imgui.h>
|
||
|
#include <hex/views/view.hpp>
|
||
|
|
||
|
#include <array>
|
||
|
#include <string>
|
||
|
|
||
|
namespace hex::plugin::builtin {
|
||
|
|
||
|
class ViewGDB : public hex::View {
|
||
|
public:
|
||
|
ViewGDB();
|
||
|
|
||
|
void drawContent() override;
|
||
|
|
||
|
bool hasViewMenuItemEntry() override;
|
||
|
|
||
|
bool isAvailable();
|
||
|
|
||
|
private:
|
||
|
std::string m_address;
|
||
|
int m_port = 0;
|
||
|
};
|
||
|
|
||
|
}
|