ECF 1.7
ParallelAlgorithm.h
1#ifndef ParallelAlgorithm_h
2#define ParallelAlgorithm_h
3
4#include "Algorithm.h"
5#include<vector>
6
13class ParallelAlgorithm : public Algorithm
14{
15public:
16 virtual ~ParallelAlgorithm()
17 { }
18
21 { return true; }
22};
23typedef boost::shared_ptr<ParallelAlgorithm> ParallelAlgorithmP;
24
25#endif // ParallelAlgorithm_h
26
Parallel algorithm base class.
bool isParallel()
Is algorithm parallel (true by default for all algorithms that inherit ParallelAlgorithm class).