Ignore:
Timestamp:
05/22/06 07:53:18 (18 years ago)
Author:
mattausch
Message:

added stuff for view cell ziping (not working yet!)

File:
1 edited

Legend:

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

    r955 r971  
    19451945} 
    19461946 
    1947  
     1947#if ZIPPED_VIEWCELLS 
     1948bool ViewCellsTree::Export(ogzstream &stream, const bool exportPvs) 
     1949#else 
    19481950bool ViewCellsTree::Export(ofstream &stream, const bool exportPvs) 
    1949 //bool ViewCellsTree::Export(ogzstream &stream, const bool exportPvs) 
     1951#endif 
    19501952{ 
    19511953        // export recursivly all view cells from the root 
     
    19831985} 
    19841986 
    1985  
    1986 //void ViewCellsTree::ExportPvs(ViewCell *viewCell, ogzstream &stream) 
     1987#if ZIPPED_VIEWCELLS 
     1988void ViewCellsTree::ExportPvs(ViewCell *viewCell, ogzstream &stream) 
     1989#else 
    19871990void ViewCellsTree::ExportPvs(ViewCell *viewCell, ofstream &stream) 
     1991#endif 
    19881992{ 
    19891993        ObjectPvsMap::iterator it, it_end = viewCell->GetPvs().mEntries.end(); 
     
    19951999} 
    19962000 
    1997  
     2001#if ZIPPED_VIEWCELLS 
     2002void ViewCellsTree::ExportViewCell(ViewCell *viewCell, ogzstream &stream, const bool exportPvs) 
     2003#else 
    19982004void ViewCellsTree::ExportViewCell(ViewCell *viewCell, ofstream &stream, const bool exportPvs) 
    1999 //void ViewCellsTree::ExportViewCell(ViewCell *viewCell, ogzstream &stream, const bool exportPvs) 
     2005#endif 
    20002006{ 
    20012007        if (viewCell->IsLeaf()) 
Note: See TracChangeset for help on using the changeset viewer.