Ignore:
Timestamp:
07/17/15 13:58:12 (9 years ago)
Author:
rlacroix
Message:

Start using the filter infrastructure to read and write fields.

Note that currently only the simple cases are working. References and all types of operations are disabled.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/file.cpp

    r609 r640  
    622622 
    623623   /*! 
     624    * Constructs the filter graph for each active field. 
     625    * 
     626    * \param gc the garbage collector to use when building the filter graph 
     627    */ 
     628   void CFile::buildFilterGraphOfEnabledFields(CGarbageCollector& gc) 
     629   { 
     630     int size = this->enabledFields.size(); 
     631     for (int i = 0; i < size; ++i) 
     632     { 
     633       this->enabledFields[i]->buildFilterGraph(gc, true); 
     634     } 
     635   } 
     636 
     637   /*! 
    624638     Prefetching the data for enabled fields read from file. 
    625639   */ 
Note: See TracChangeset for help on using the changeset viewer.