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

◆ get_parameter()

template<ComputeData InputType = std::vector<Kakshya::DataVariant>, ComputeData OutputType = InputType>
std::any MayaFlux::Yantra::UniversalExtractor< InputType, OutputType >::get_parameter ( const std::string &  name) const
inlineoverridevirtual

Retrieves a parameter's current value.

Parameters
nameParameter identifier
Returns
Current parameter value as std::any

Implements MayaFlux::Yantra::ComputeOperation< InputType, OutputType >.

Definition at line 121 of file UniversalExtractor.hpp.

122 {
123 if (name == "scope") {
124 return m_scope;
125 }
126 return get_extraction_parameter(name);
127 }
virtual std::any get_extraction_parameter(const std::string &name) const