Return TypeFunction nameArguments
hzDirent&hzDirent::operator=(const hzDirent&,)

Declared in file: hzDirectory.h
Defined in file : hzDirectory.cpp

Function Logic:

0:START 1:m_parent m_Name m_Ctime m_Mtime m_Inode m_Size m_Mode m_Owner m_Group m_Links m_Status 2:Return *this

Function body:

hzDirent& hzDirent::operator= (const hzDirent& op)
{
   m_parent = op.m_parent ;
   m_Name = op.m_Name ;
   m_Ctime = op.m_Ctime ;
   m_Mtime = op.m_Mtime ;
   m_Inode = op.m_Inode ;
   m_Size = op.m_Size ;
   m_Mode = op.m_Mode ;
   m_Owner = op.m_Owner ;
   m_Group = op.m_Group ;
   m_Links = op.m_Links ;
   m_Status = op.m_Status ;
   return *this ;
}