|
FOUND
|
ModifyingStage is a stage that modifies a resource. More...
#include <stages.hpp>


Public Member Functions | |
| ModifyingStage ()=default | |
| Constructs a new ModifyingStage. | |
| virtual | ~ModifyingStage ()=default |
| Destroys this. | |
| void | DoAction () override |
| Executes Run (with void return) | |
| void | SetResource (T &resource) |
| Sets the resource to modify. | |
Public Member Functions inherited from found::Stage< raw_type< T > &, void > | |
| virtual void | Run (raw_type< T > & input)=0 |
| Runs this stage. | |
Private Attributes | |
| T * | resource = nullptr |
| The pointer to the resource. | |
ModifyingStage is a stage that modifies a resource.
| T | The type of resource being modified |
|
inlineoverridevirtual |
Executes Run (with void return)
Implements found::Action.
|
inline |
Sets the resource to modify.
| resource | The resource to modify |