Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

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