Ignore:
Timestamp:
06/25/19 16:14:54 (5 years ago)
Author:
yushan
Message:

MARK: Dynamic workflow graph developement. Branch up to date with trunk @1663.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_trunk_omp/src/filter/output_pin.hpp

    r1668 r1677  
    77namespace xios 
    88{ 
     9  class CInputPin; 
     10  class CFilter; 
    911  /*! 
    1012   * An output pin handles the connections with downstream filters. 
     
    1315  { 
    1416    public: 
     17      StdString output_field_id; 
     18      int tag; 
     19 
     20      std::vector< std::shared_ptr<COutputPin> > parent_filters; 
     21 
    1522      /*! 
    1623       * Constructs an ouput pin with manual or automatic trigger 
     
    6976      void virtual invalidate(Time timestamp); 
    7077 
    71       /*! 
    72        * Returns filter's id needed in case of building workflow graph 
    73        */ 
    74       int getFilterId(); 
     78      void virtual setParentFiltersTag(); 
     79 
    7580 
    7681    protected: 
     
    109114      bool buildWorkflowGraph; 
    110115 
    111       //! Filter's id needed in case of building a workflow graph 
    112       int filterId; 
    113  
    114116 
    115117  }; // class COutputPin 
Note: See TracChangeset for help on using the changeset viewer.