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 *
Line 
1#ifndef __PREPROCESSOR_THREAD_H
2#define __PREPROCESSOR_THREAD_H
3
4#include <QThread>
5
6namespace GtpVisibilityPreprocessor {
7
8class Preprocessor;
9
10class PreprocessorThread : public QThread
11{
12  Q_OBJECT
13
14  Preprocessor *mPreprocessor;
15public:
16  PreprocessorThread(Preprocessor *p, QObject *parent = 0);
17  ~PreprocessorThread();
18
19  void Main();
20
21protected:
22  void run() {
23        Main();
24  }
25};
26
27}
28
29#endif
Note: See TracBrowser for help on using the repository browser.