Ignore:
Timestamp:
06/10/08 15:48:44 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/CHC_revisited/common.h

    r2751 r2752  
    2020 
    2121struct Triangle3; 
    22    
     22class BvhNode; 
     23class BvhLeaf; 
     24 
     25 
    2326#if defined(_MSC_VER) 
    2427// use perftimer only on msvc 
     
    454457 
    455458 
     459 
     460/////////// 
     461//-- typedefs 
     462 
     463typedef std::vector<BvhNode *> BvhNodeContainer; 
     464typedef std::vector<BvhLeaf *> BvhLeafContainer; 
    456465typedef std::vector<Triangle3> TriangleContainer; 
    457466 
    458 } 
    459  
    460 #endif 
    461  
    462  
    463  
    464  
    465  
    466  
    467  
    468  
     467 
     468} 
     469 
     470#endif 
     471 
     472 
     473 
     474 
     475 
     476 
     477 
     478 
Note: See TracChangeset for help on using the changeset viewer.