Ignore:
Timestamp:
08/11/06 17:39:54 (18 years ago)
Author:
mattausch
Message:

added loader for osp trees

File:
1 edited

Legend:

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

    r1199 r1201  
    21822182 
    21832183 
    2184 #if ZIPPED_VIEWCELLS 
    2185 bool ViewCellsTree::Export(ogzstream &stream, const bool exportPvs) 
    2186 #else 
    2187 bool ViewCellsTree::Export(ofstream &stream, const bool exportPvs) 
    2188 #endif 
     2184bool ViewCellsTree::Export(OUT_STREAM &stream, const bool exportPvs) 
    21892185{ 
    21902186        // export recursivly all view cells from the root 
     
    22232219} 
    22242220 
    2225 #if ZIPPED_VIEWCELLS 
    2226 void ViewCellsTree::ExportPvs(ViewCell *viewCell, ogzstream &stream) 
    2227 #else 
    2228 void ViewCellsTree::ExportPvs(ViewCell *viewCell, ofstream &stream) 
    2229 #endif 
     2221 
     2222void ViewCellsTree::ExportPvs(ViewCell *viewCell, OUT_STREAM &stream) 
    22302223{ 
    22312224        ObjectPvsMap::iterator it, it_end = viewCell->GetPvs().mEntries.end(); 
     
    22372230} 
    22382231 
    2239 #if ZIPPED_VIEWCELLS 
    2240 void ViewCellsTree::ExportViewCell(ViewCell *viewCell, ogzstream &stream, const bool exportPvs) 
    2241 #else 
    2242 void ViewCellsTree::ExportViewCell(ViewCell *viewCell, ofstream &stream, const bool exportPvs) 
    2243 #endif 
     2232 
     2233void ViewCellsTree::ExportViewCell(ViewCell *viewCell,  
     2234                                                                   OUT_STREAM &stream,  
     2235                                                                   const bool exportPvs) 
    22442236{ 
    22452237        if (viewCell->IsLeaf()) 
     
    22582250 
    22592251                stream << "\" />" << endl; 
    2260                 //stream << " </Leaf>" << endl; 
    22612252        } 
    22622253        else 
Note: See TracChangeset for help on using the changeset viewer.