#include <treewalk.h>

Definition at line 24 of file treewalk.h.
Public Member Functions | |
| FileInfo () | |
| FileInfo (const cmn_Path &a_dirPath, const string &a_name, ivd_FileSize_t a_size, ivd_FileID_t a_fileID, ivd_FileID_t a_ownerID) | |
| FileInfo (const FileInfo &a_from) | |
Public Attributes | |
| cmn_Path | m_dirPath |
| string | m_name |
| ivd_FileSize_t | m_size |
| ivd_FileID_t | m_fileID |
| ivd_FileID_t | m_ownerID |
| FileInfo::FileInfo | ( | ) | [inline] |
| FileInfo::FileInfo | ( | const cmn_Path & | a_dirPath, | |
| const string & | a_name, | |||
| ivd_FileSize_t | a_size, | |||
| ivd_FileID_t | a_fileID, | |||
| ivd_FileID_t | a_ownerID | |||
| ) | [inline] |
| FileInfo::FileInfo | ( | const FileInfo & | a_from | ) | [inline] |
Definition at line 43 of file treewalk.h.
References m_dirPath, m_fileID, m_name, m_ownerID, and m_size.
00043 { 00044 if (&a_from == this) { 00045 return; 00046 } 00047 m_dirPath = a_from.m_dirPath; 00048 m_name = a_from.m_name; 00049 m_size = a_from.m_size; 00050 m_fileID = a_from.m_fileID; 00051 m_ownerID = a_from.m_ownerID; 00052 }
Definition at line 54 of file treewalk.h.
Referenced by FileInfoCache::AddFile(), FileInfoCache::CheckFiles(), and FileInfo().
| string FileInfo::m_name |
Definition at line 55 of file treewalk.h.
Referenced by FileInfoCache::AddFile(), FileInfoCache::CheckFiles(), and FileInfo().
Definition at line 57 of file treewalk.h.
Referenced by FileInfoCache::AddFile(), FileInfoCache::CheckFiles(), and FileInfo().
1.5.6