Ignore:
Timestamp:
02/15/07 13:19:17 (17 years ago)
Author:
mattausch
Message:

implemented bit pvs (warnin: only worjs for preprocessing)

File:
1 edited

Legend:

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

    r2116 r2117  
    2929        } 
    3030 
    31         const PvsEntry<T, S> &Next() 
    32         { 
    33                 return *(mItCurrent ++); 
     31        T Next(S &pdf) 
     32        { 
     33                pdf = (*mItCurrent).mData; 
     34                return (*(mItCurrent ++)).mObject; 
     35        } 
     36 
     37        T Next() 
     38        { 
     39                return (*(mItCurrent ++)).mObject; 
    3440        } 
    3541 
Note: See TracChangeset for help on using the changeset viewer.