Checkpoint: source close dialog.

This commit is contained in:
Ernie Pasveer
2022-04-02 17:26:28 -05:00
parent 74234f3d50
commit 1612306951
10 changed files with 170 additions and 6 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "SeerCloseSourceDialog.h"
#include <QtWidgets/QDialog>
#include <QtWidgets/QWidget>
#include <QtCore/QDebug>
SeerCloseSourceDialog::SeerCloseSourceDialog(QWidget* parent) : QDialog(parent) {
// Set up the UI.
setupUi(this);
// Setup the widgets
// Connect things.
}
SeerCloseSourceDialog::~SeerCloseSourceDialog() {
}