source: GTP/trunk/Lib/Vis/Preprocessing/src/PreprocessorThread.h @ 860

Revision 860, 424 bytes checked in by mattausch, 18 years ago (diff)
  • Property svn:executable set to *
RevLine 
[492]1#ifndef __PREPROCESSOR_THREAD_H
2#define __PREPROCESSOR_THREAD_H
3
4#include <QThread>
5
[860]6namespace GtpVisibilityPreprocessor {
7
[492]8class Preprocessor;
9
10class PreprocessorThread : public QThread
11{
12  Q_OBJECT
13
14  Preprocessor *mPreprocessor;
15public:
16  PreprocessorThread(Preprocessor *p, QObject *parent = 0);
[556]17  ~PreprocessorThread();
[492]18
19  void Main();
20
21protected:
22  void run() {
23        Main();
24  }
25};
26
[860]27}
[492]28
29#endif
Note: See TracBrowser for help on using the repository browser.