source: GTP/trunk/Lib/Vis/Preprocessing/src/QtPreprocessorThread.cpp @ 1520

Revision 1520, 619 bytes checked in by mattausch, 18 years ago (diff)

moved raycasting out of preprocessor into specific ray casting interface

  • Property svn:executable set to *
Line 
1#ifdef GTP_INTERNAL
2#include <QApplication>
3#include "QtPreprocessorThread.h"
4#include "Camera.h"
5#include "KdTree.h"
6#include "SceneGraph.h"
7#include "Preprocessor.h"
8
9
10namespace GtpVisibilityPreprocessor {
11
12
13QtPreprocessorThread::QtPreprocessorThread(Preprocessor *p,
14                                                                                   QObject *parent):PreprocessorThread(p),
15                                                                                                                        QThread(parent)
16                                                                                                                       
17{
18  if (p->mQuitOnFinish)
19  {
20          connect(this, SIGNAL(finished()), qApp, SLOT(closeAllWindows(void)));
21  }
22}
23
24
25QtPreprocessorThread::~QtPreprocessorThread()
26{
27  cerr<<"Preprocessor thread destructor...\n";
28}
29
30}
31
32#endif
Note: See TracBrowser for help on using the repository browser.