Separate PACS Module.

This commit is contained in:
Krad
2022-09-21 08:52:11 +08:00
parent 6873e69571
commit 5c854017d8
34 changed files with 107 additions and 28 deletions

View File

@@ -0,0 +1,15 @@
//
// 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() {
}