Ignore:
Timestamp:
07/24/06 10:12:34 (18 years ago)
Author:
mattausch
Message:

vsposp debug version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.h

    r1022 r1145  
    88#include "KdTree.h" 
    99 
    10 #include <QObject> 
     10// matt: remove qt dependencies 
     11//#include <QObject> 
    1112 
    1213namespace GtpVisibilityPreprocessor { 
     
    3334*/ 
    3435   
    35   /** Main class of the visibility preprocessor. Responsible for loading and 
    36       saving of the input and output files. Initiates construction of the kD-tree, 
    37       viewcell loading/generation and the visibility computation itself. 
    38   */ 
    39 class Preprocessor : public QObject { 
    40   Q_OBJECT 
     36/** Main class of the visibility preprocessor. Responsible for loading and 
     37    saving of the input and output files. Initiates construction of the kD-tree, 
     38    viewcell loading/generation and the visibility computation itself. 
     39*/ 
     40// matt: remove qt dependencies 
     41class Preprocessor// : public QObject  
     42{ 
     43  //Q_OBJECT 
    4144 
    4245public: 
     
    4952  /** Load the input scene.  
    5053      @param filename file to load 
    51         @return true on success 
     54          @return true on success 
    5255  */ 
    5356  virtual bool LoadScene(const string filename); 
     
    202205 
    203206  GlRendererBuffer *renderer; 
    204    
    205   signals: 
     207// matt: remove qt dependencies  
     208//signals: 
    206209  void EvalPvsStat(); 
    207210 
    208211}; 
    209212 
    210  
    211  
    212 extern Preprocessor *preprocessor; 
     213//extern Preprocessor *preprocessor; 
    213214 
    214215} 
Note: See TracChangeset for help on using the changeset viewer.