Return TypeFunction nameArguments
hdsTexthdsText::operator=(const hdsText&,)

Declared in file: hzDissemino.h
Defined in file : hdsGraph.cpp

Function Logic:

0:START 1:m_Text m_Font m_Color m_posH m_posV 2:Return *this

Function body:

hdsText hdsText::operator= (const hdsText& op)
{
   m_Text = op.m_Text ;
   m_Font = op.m_Font ;
   m_Color = op.m_Color ;
   m_posH = op.m_posH ;
   m_posV = op.m_posV ;
   return *this ;
}