File failed to load: https://isis.astrogeology.usgs.gov/9.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
QnetDeletePointDialog.cpp
1#include <QtWidgets>
2
3#include "QnetDeletePointDialog.h"
4
5QnetDeletePointDialog::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