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