mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
16 lines
287 B
C++
16 lines
287 B
C++
#pragma once
|
|
|
|
#include <QMdiArea>
|
|
#include "ELFView.h"
|
|
#include "filesystem_def.h"
|
|
|
|
template <typename ElfType>
|
|
class CElfViewEx : public CELFView<ElfType>
|
|
{
|
|
public:
|
|
CElfViewEx(QMdiArea*, const fs::path&);
|
|
virtual ~CElfViewEx() = default;
|
|
|
|
private:
|
|
std::unique_ptr<ElfType> m_elf;
|
|
};
|