Ignore:
Timestamp:
07/02/19 11:42:27 (5 years ago)
Author:
yushan
Message:

MARK: Dynamic workflow graph developement. Branch up to date with trunk @1676. Using vis.js

File:
1 edited

Legend:

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

    r1677 r1679  
    44#include "garbage_collector.hpp" 
    55#include "input_pin.hpp" 
     6#include "duration.hpp" 
    67 
    78namespace xios 
    89{ 
     10  class CField; 
    911  class CInputPin; 
    1012  class CFilter; 
     13  class CDuration; 
    1114  /*! 
    1215   * An output pin handles the connections with downstream filters. 
     
    1518  { 
    1619    public: 
    17       StdString output_field_id; 
     20      // StdString output_field_id; 
    1821      int tag; 
     22      Time start_graph; 
     23      Time end_graph; 
     24      CField *field; 
     25 
     26 
    1927 
    2028      std::vector< std::shared_ptr<COutputPin> > parent_filters; 
     
    2836       * \param buildWorkflowGraph indicates whether data will be visualized 
    2937       */ 
    30       COutputPin(CGarbageCollector& gc, bool manualTrigger = false, bool buildWorkflowGraph = false); 
     38      COutputPin(CGarbageCollector& gc, bool manualTrigger = false); 
    3139 
    3240      StdString virtual GetName(void); 
     
    111119      std::map<Time, CDataPacketPtr> outputPackets; 
    112120 
    113       //! Indicates whether the workflow will be visualized 
    114       bool buildWorkflowGraph; 
    115  
    116  
    117121  }; // class COutputPin 
    118122} // namespace xios 
Note: See TracChangeset for help on using the changeset viewer.