Ignore:
Timestamp:
05/16/07 09:18:00 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2342 r2380  
    246246        virtual bool IsLeaf() const = 0; 
    247247 
    248         static bool SmallerPvs(const ViewCell *a, const ViewCell *b)  
     248        inline bool SmallerPvs(const ViewCell *a, const ViewCell *b)  
    249249        { 
    250250                // HACK: take scalar value because pvs may not have been stored properly 
     
    256256        } 
    257257 
    258         static bool GreaterOrEqualPvs(const ViewCell *a, const ViewCell *b)  
     258        inline bool GreaterOrEqualPvs(const ViewCell *a, const ViewCell *b)  
    259259        { 
    260260                return !SmallerPvs(a, b); 
    261261        } 
    262262 
    263         static bool SmallerRenderCost(const ViewCell *a, const ViewCell *b)  
     263        inline bool SmallerRenderCost(const ViewCell *a, const ViewCell *b)  
    264264        { 
    265265                return a->GetRenderCost() < b->GetRenderCost(); 
    266266        } 
    267267 
    268         static bool LargerRenderCost(const ViewCell *a, const ViewCell *b)  
     268        inline bool LargerRenderCost(const ViewCell *a, const ViewCell *b)  
    269269        { 
    270270                return a->GetRenderCost() > b->GetRenderCost(); 
Note: See TracChangeset for help on using the changeset viewer.