Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore
Inheritance Hierarchy
- IOperator
- TExecutableOperator
- FGraphOperator
- TArrayConcatOperator
- TArrayGetOperator
- TArrayNumOperator
- TArrayRandomGetOperator
- TArraySetOperator
- TArrayShuffleOperator
- TArraySubsetOperator
- TAutoConverterNode::FConverterOperator
- TRandomNodeOperator
- TReceiveNode::TReceiverOperator
- TSendNode::TSendOperator
- TTriggerAccumulatorOperator
- TTriggerCompareNodeOperator
- TValueOperator
References
| Module | MetasoundGraphCore |
| Header | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundExecutableOperator.h |
| Include | #include "MetasoundExecutableOperator.h" |
Syntax
template<class DerivedOperatorType>
class TExecutableOperator : public Metasound::IOperator
Remarks
Convenience class for supporting the IOperator interface's GetExecuteFunction virtual member function.
Derived classes should inherit from this template class as well as implement a void Execute() member function. class MyOperator : public TExecutableOperator
Destructors
| Type | Name | Description | |
|---|---|---|---|
Overridden from IOperator
| Type | Name | Description | |
|---|---|---|---|
| FExecuteFunction | Return the execution function to call during graph execution. | ||
| FPostExecuteFunction | Return the FPostExecute function to call during graph post execution. | ||
| FResetFunction | Return the reset function to call during graph execution. |