Definition at line 25 of file QuidTableRepositoryInFile.h. References Impala::Persistency::QuidTableLocator::GetDir(), Impala::Persistency::RepositoryInFileSystem::GetFile(), Impala::Persistency::QuidTableLocator::GetName(), Impala::Core::Table::Read(), RepFS(), and Impala::Persistency::File::Valid(). 00026 { 00027 QuidTable* res = new QuidTable(); 00028 File file = RepFS().GetFile(loc, loc.GetDir(), loc.GetName(), 00029 false, false); 00030 if (!file.Valid()) 00031 return 0; 00032 Read(res, file); 00033 return res; 00034 }
Here is the call graph for this function:
|