PushFlowControl.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 _PushFlowControl_hxx_
00024 #define _PushFlowControl_hxx_
00025
00026 #include "FlowControl.hxx"
00027 #include <list>
00028
00029 namespace CLAM
00030 {
00031
00032 class Processing;
00033
00036 class PushFlowControl : public FlowControl
00037 {
00038 public:
00039 PushFlowControl();
00040 virtual ~PushFlowControl(){}
00041
00042 void ProcessingAddedToNetwork( Processing & added );
00043 void ProcessingRemovedFromNetwork( Processing & removed );
00044
00045 void Do();
00046
00047 private:
00048 void AddNewPossibleProcessingsToDo( Processing * father,
00049 std::list<Processing*> &);
00050 std::list< Processing* > mGenerators;
00051
00052
00053 };
00054
00055 }
00056
00057 #endif // _PushFlowControl_hxx_
00058