Play-/tools/ElfView/ElfViewEx.h

17 lines
287 B
C
Raw Permalink Normal View History

2022-03-16 16:53:43 -04:00
#pragma once
#include <QMdiArea>
#include "ELFView.h"
#include "filesystem_def.h"
template <typename ElfType>
class CElfViewEx : public CELFView<ElfType>
2022-03-16 16:53:43 -04:00
{
public:
CElfViewEx(QMdiArea*, const fs::path&);
virtual ~CElfViewEx() = default;
2022-03-16 16:53:43 -04:00
private:
std::unique_ptr<ElfType> m_elf;
2022-03-16 16:53:43 -04:00
};