Ignore:
Timestamp:
04/29/06 19:11:23 (18 years ago)
Author:
mattausch
Message:

working on preprocessor integration
added iv stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsParser.cpp

    r860 r863  
    3131#include "ViewCellsManager.h" 
    3232 
    33 using namespace GtpVisibilityPreprocessor { 
     33namespace GtpVisibilityPreprocessor { 
    3434 
    3535 
     
    132132} 
    133133 
    134 inline bool vlt(ViewCell *v1, ViewCell *v2) 
     134inline static bool vlt(ViewCell *v1, ViewCell *v2) 
    135135{ 
    136136        return v1->mId < v2->mId; 
     
    297297 
    298298                                ObjectContainer::iterator oit = 
    299                                   lower_bound(mObjects->begin(), mObjects->end(), &dummyInst, ilt); 
     299                                  lower_bound(mObjects->begin(), mObjects->end(), (Intersectable *)&dummyInst, ilt); 
    300300                                 
    301301                                Intersectable *obj = *oit; 
     
    444444        else 
    445445        { 
     446                // add to invalid view space 
    446447                if (mViewCellsManager->GetType() == ViewCellsManager::VSP_BSP) 
    447448                { 
Note: See TracChangeset for help on using the changeset viewer.