Destructor. */
| 47 | /** Destructor. |
| 48 | */ |
| 49 | virtual ~CAlgorithm(); |
| 50 | |
| 51 | // Delete copy ctor/operator to prevent copying Algorithm objects |
| 52 | CAlgorithm(const CAlgorithm&)=delete; |
| 53 | CAlgorithm& operator=(const CAlgorithm&)=delete; |
| 54 | |
| 55 | /** Initialize the algorithm with a config object. |