USGS

Isis 3.0 Object Programmers' Reference

Home

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