#include "ElfViewEx.h" #include "StdStreamUtils.h" #include "ElfFile.h" template CElfViewEx::CElfViewEx(QMdiArea* mdiArea, const fs::path& elfPath) : CELFView(mdiArea) { CELFView::setWindowTitle(QString::fromStdString(elfPath.filename().string())); auto stream = Framework::CreateInputStdStream(elfPath.native()); m_elf = std::make_unique>(stream); CELFView::SetELF(m_elf.get()); } template class CElfViewEx; template class CElfViewEx;