NaiveFlowControl.hxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _NaiveFlowControl_hxx_
00024 #define _NaiveFlowControl_hxx_
00025
00026 #include "FlowControl.hxx"
00027 #include <list>
00028
00029 namespace CLAM
00030 {
00031
00032 class Processing;
00033
00034 class NaiveFlowControl : public FlowControl
00035 {
00036 public:
00037 NaiveFlowControl();
00038 virtual ~NaiveFlowControl(){}
00039
00040 void ProcessingAddedToNetwork( Processing & added );
00041 void ProcessingRemovedFromNetwork( Processing & removed );
00042
00043 void Do();
00044
00045 private:
00046 typedef std::list< Processing* > ProcessingList;
00047 ProcessingList mSources;
00048 ProcessingList mSinks;
00049 ProcessingList mGenerators;
00050 ProcessingList mNormalProcessings;
00051
00052
00053 };
00054
00055 }
00056
00057 #endif // _NaiveFlowControl_hxx_
00058