MayaFlux 0.2.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 236 of file Routine.cpp.

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

References m_handle.