Isis 3.0 Programmer Reference
Back
|
Home
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
SocketThread.h
1
#ifndef Qisis_SocketThread_h
2
#define Qisis_SocketThread_h
3
4
#include <QThread>
5
6
namespace
Isis {
15
class
SocketThread
:
public
QThread
{
16
Q_OBJECT
17
18
public
:
19
SocketThread
(
QObject
*parent = 0);
20
~SocketThread
();
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
Isis::SocketThread::focusApp
void focusApp()
Application has focus signal.
Isis::SocketThread::run
void run()
Starts the socket thread.
Definition:
SocketThread.cpp:35
Isis::SocketThread
Definition:
SocketThread.h:15
Isis::SocketThread::~SocketThread
~SocketThread()
Destroys the SocketThread object.
Definition:
SocketThread.cpp:30
Isis::SocketThread::SocketThread
SocketThread(QObject *parent=0)
Constructor for the SocketThread.
Definition:
SocketThread.cpp:26
QThread
QObject
Isis::SocketThread::newImage
void newImage(const QString &image)
New image signal.
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
ISIS Support Center
File Modified: 07/12/2023 23:29:21