22 lines
412 B
C++
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
|