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

Revision 1387, 567 bytes checked in by bittner, 18 years ago (diff)

updates to make qt version running again

  • Property svn:executable set to *
Line 
1#ifndef __PREPROCESSOR_THREAD_H
2#define __PREPROCESSOR_THREAD_H
3
4
5namespace GtpVisibilityPreprocessor
6{
7
8class Preprocessor;
9
10/** This class represents a preprocessor thread.
11*/
12class PreprocessorThread
13{
14public:
15  PreprocessorThread(Preprocessor *p);
16  virtual ~PreprocessorThread();
17 
18  virtual void InitThread() = 0;
19  virtual void RunThread() = 0;
20
21  virtual void Main() = 0;
22protected:
23 
24  Preprocessor *mPreprocessor;
25};
26
27/*class PreprocessorThreadFactory
28{
29        PreprocessorThread *Create(const int threadType);
30}*/
31
32}
33
34#endif
Note: See TracBrowser for help on using the repository browser.