16 lines
260 B
C++
16 lines
260 B
C++
//
|
|
// Created by Krad on 2022/9/20.
|
|
//
|
|
|
|
#include "DIDMainWindow.h"
|
|
#include "PACS/Widget/ImportWidget.h"
|
|
|
|
DIDMainWindow::DIDMainWindow(QWidget *parent) {
|
|
auto m_import = new ImportWidget(this);
|
|
m_import->show();
|
|
}
|
|
|
|
DIDMainWindow::~DIDMainWindow() {
|
|
|
|
}
|