File failed to load: https://isis.astrogeology.usgs.gov/3.9.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
GuiHelperAction.cpp
1 #include "GuiHelperAction.h"
2 #include <iostream>
3 
4 namespace Isis {
5  GuiHelperAction::GuiHelperAction(QObject *parent, const QString &funct) : QAction(parent) {
6  p_funct = funct;
7  connect(this, SIGNAL(triggered(bool)), this, SLOT(retrigger()));
8  }
9 
10  GuiHelperAction::~GuiHelperAction() {};
11 
12  void GuiHelperAction::retrigger() {
13  emit trigger(p_funct);
14  }
15 
16 }
17 
18 
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 07/12/2023 23:20:14