MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_operation()

template<typename OpClass >
std::shared_ptr< OpClass > MayaFlux::Yantra::ComputeMatrix::get_operation ( const std::string &  name)
inline

Get a named operation from this matrix.

Template Parameters
OpClassExpected operation type
Parameters
nameOperation name
Returns
Shared pointer to operation or nullptr

Definition at line 90 of file ComputeMatrix.hpp.

91 {
92 return m_operations.get<OpClass>(name);
93 }
std::shared_ptr< OpClass > get(const std::string &name)
Get operation from pool with type safety.