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

Use the filter infrastructure to handle the temporal operations.

Add a temporal filter to do so.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/filter/source_filter.hpp

    r638 r643  
    2828       * immediately after this method returns. 
    2929       * 
    30        * \param timestamp the timestamp of the data 
     30       * \param date the date associated to the data 
    3131       * \param data an array containing the data 
    3232       */ 
    3333      template <int N> 
    34       void streamData(Time timestamp, const CArray<double, N>& data); 
     34      void streamData(CDate date, const CArray<double, N>& data); 
    3535 
    3636      /*! 
     
    3939       * immediately after this method returns. 
    4040       * 
    41        * \param timestamp the timestamp of the data 
     41       * \param date the date associated to the data 
    4242       * \param data an array containing the data 
    4343       */ 
    44       void streamDataFromServer(Time timestamp, const std::map<int, CArray<double, 1> >& data); 
     44      void streamDataFromServer(CDate date, const std::map<int, CArray<double, 1> >& data); 
    4545 
    4646      /*! 
    4747       * Signals the filter graph that the end of stream was reached. 
    4848       * 
    49        * \param timestamp the timestamp at which the end of stream occurred 
     49       * \param date the date at which the end of stream occurred 
    5050       */ 
    51       void signalEndOfStream(Time timestamp); 
     51      void signalEndOfStream(CDate date); 
    5252 
    5353    private: 
Note: See TracChangeset for help on using the changeset viewer.