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/data_packet.hpp

    r637 r643  
    55 
    66#include "array_new.hpp" 
    7 #include "duration.hpp" 
     7#include "date.hpp" 
    88 
    99namespace xios 
     
    2323 
    2424    CArray<double, 1> data; //!< Array containing the data 
     25    CDate date;             //!< Date associated to the data 
    2526    Time timestamp;         //!< Timestamp of the data 
    2627    StatusCode status;      //!< Status of the packet 
     
    3536      p->data.resize(data.shape()); 
    3637      p->data = data; 
     38      p->date = date; 
    3739      p->timestamp = timestamp; 
    3840      p->status = status; 
Note: See TracChangeset for help on using the changeset viewer.