Isis 3.0 Programmer Reference
Home
DeleteControlPointDialog.cpp
1 #include <QtWidgets>
2 
3 #include "DeleteControlPointDialog.h"
4 
5 DeleteControlPointDialog::DeleteControlPointDialog(QWidget *parent) : QDialog(parent) {
6 
7  setupUi(this);
8 
9  connect(okButton, SIGNAL(clicked()), this, SLOT(accept()));
10  connect(cancelButton, SIGNAL(clicked()), this, SLOT(reject()));
11 }