Files
DCMV/DIDKit/App/MenuAction/GetPacsConfigDialogAction.h
2022-09-23 13:13:41 +08:00

22 lines
412 B
C++

#ifndef GETPACSCONFIGDIALOGACTION_H
#define GETPACSCONFIGDIALOGACTION_H
#include <QAction>
class ImportWidget;
class GetPacsConfigDialogAction : public QAction
{
public:
GetPacsConfigDialogAction(const QString& aName, QWidget* aParent = nullptr);
~GetPacsConfigDialogAction() override;
private:
void executeAction();
private:
ImportWidget* mWidget;
};
#endif // GETPACSCONFIGDIALOGACTION_H