Definition at line 35 of file AnnotationTableRepositoryInFile.h. References GetDir(), Impala::Persistency::RepositoryInFileSystem::GetFile(), Impala::Persistency::AnnotationTableLocator::GetKeyword(), Impala::Core::Table::Read(), RepFS(), and Impala::Persistency::File::Valid(). 00036 { 00037 AnnotationTable* res = new AnnotationTable(loc.GetKeyword(), 0); 00038 String dir = GetDir(loc); 00039 File file = RepFS().GetFile(loc, dir, loc.GetKeyword() + ".tab", 00040 false, false); 00041 if (!file.Valid()) 00042 return 0; 00043 Read(res, file); 00044 return res; 00045 }
Here is the call graph for this function:
|