File failed to load: https://isis.astrogeology.usgs.gov/8.3.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
SocketThread.h
1#ifndef Qisis_SocketThread_h
2#define Qisis_SocketThread_h
3
4#include <QThread>
5
6namespace Isis {
15 class SocketThread : public QThread {
16 Q_OBJECT
17
18 public:
19 SocketThread(QObject *parent = 0);
21
22 void run();
23 void stop() {
24 p_done = true;
25 };
26
27 signals:
33 void newImage(const QString &image);
35 void focusApp();
36
37 private:
38 bool p_done;
39 };
40};
41
42#endif
43
44
void newImage(const QString &image)
New image signal.
void run()
Starts the socket thread.
~SocketThread()
Destroys the SocketThread object.
SocketThread(QObject *parent=0)
Constructor for the SocketThread.
void focusApp()
Application has focus signal.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16

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: 02/24/2025 16:15:15