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

◆ operator=() [1/2]

GraphicsRoutine & MayaFlux::Vruta::GraphicsRoutine::operator= ( const GraphicsRoutine other)

Copy assignment operator.

Parameters
otherGraphicsRoutine to copy from
Returns
Reference to this GraphicsRoutine

Definition at line 232 of file Routine.cpp.

233{
234 if (this != &other) {
235 m_handle = other.m_handle;
236 }
237 return *this;
238}
std::coroutine_handle< promise_type > m_handle
Handle to the underlying coroutine.
Definition Routine.hpp:654

References m_handle.