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
GuiHelperAction.h
1
5
6/* SPDX-License-Identifier: CC0-1.0 */
7#include <QAction>
8#include <QString>
9
10namespace Isis {
16 class GuiHelperAction : public QAction {
17
18 Q_OBJECT
19
20 public:
21
22 GuiHelperAction(QObject *parent, const QString &funct);
23 ~GuiHelperAction();
24
25 signals:
26 void trigger(const QString &funct);
27
28 private slots:
29 void retrigger();
30
31 private:
32 QString p_funct;
33 };
34}
35
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16