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.h

    r1168 r1201  
    487487        /** Exports view cells to file. 
    488488        */ 
    489 #if ZIPPED_VIEWCELLS 
    490         bool Export(ogzstream &stream, const bool exportPvs = false); 
    491 #else 
    492         bool Export(ofstream &stream, const bool exportPvs = false); 
    493 #endif 
     489        bool Export(OUT_STREAM &stream, const bool exportPvs = false); 
    494490 
    495491        /** Export statistics of this view cell tree. 
     
    603599                NOTE: should be in exporter!! 
    604600        */ 
    605 #if ZIPPED_VIEWCELLS 
    606         void ExportViewCell(ViewCell *viewCell, ogzstream &stream, const bool exportPvs); 
    607 #else 
    608         void ExportViewCell(ViewCell *viewCell, ofstream &stream, const bool exportPvs);         
    609 #endif 
     601        void ExportViewCell(ViewCell *viewCell, OUT_STREAM &stream, const bool exportPvs);       
    610602 
    611603        /** Exports pvs of a view cell. 
    612604        */ 
    613 #if ZIPPED_VIEWCELLS 
    614         void ExportPvs(ViewCell *viewCell, ogzstream &stream); 
    615 #else 
    616         void ExportPvs(ViewCell *viewCell, ofstream &stream); 
    617 #endif 
     605        void ExportPvs(ViewCell *viewCell, OUT_STREAM &stream); 
    618606 
    619607        int GetEntriesInPvsForCompressedStorage(ViewCell *vc) const; 
Note: See TracChangeset for help on using the changeset viewer.