g4dialog
Loading...
Searching...
No Matches
g4dialog.h
Go to the documentation of this file.
1#pragma once
2
3// qt
4#include <QtWidgets>
5
6// gemc
7#include "gbase.h"
8
25class G4Dialog : public GBase<G4Dialog>, public QWidget
26{
27public:
34 explicit G4Dialog(const std::shared_ptr<GOptions>& gopt, QWidget* parent = nullptr);
35
37 ~G4Dialog() override = default;
38};
Main widget for the G4Dialog module.
Definition g4dialog.h:26
~G4Dialog() override=default
Destructor (defaulted).
G4Dialog(const std::shared_ptr< GOptions > &gopt, QWidget *parent=nullptr)
Construct the main dialog widget.
Definition g4dialog.cc:6