source: trunk/VUT/GtpVisibilityPreprocessor/src/PreprocessorThread.h @ 492

Revision 492, 382 bytes checked in by bittner, 18 years ago (diff)

Large merge - viewcells seem not functional now

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