Aspose.Tasks for C++
|
Represents an algorithm that can be applied to a list of objects T . More...
#include <IAlgorithm.h>
Inherits System::Object.
Public Member Functions | |
virtual void | PreAlg (T el, int32_t index)=0 |
Called before processing of an object. More... | |
virtual void | Alg (T el, int32_t index)=0 |
Processes an object in the list. Called after IAlgorithm<T>::PreAlg; More... | |
virtual void | PostAlg (T el, int32_t index)=0 |
Called after processing of an object. More... | |
Represents an algorithm that can be applied to a list of objects T .
T | The type of object to apply method interface to. |
|
pure virtual |
Processes an object in the list. Called after IAlgorithm<T>::PreAlg;
el | Processed object. |
index | Index of the object. |
|
pure virtual |
Called after processing of an object.
el | Processed object. |
index | Index of the object. |
|
pure virtual |
Called before processing of an object.
el | Processed object. |
index | Index of the object. |