Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

AnnotationTable* Impala::Persistency::AnnotationTableRepositoryInFile::Get ( const AnnotationTableLocator loc  )  [inline]

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:


Generated on Fri Mar 19 11:34:29 2010 for ImpalaSrc by  doxygen 1.5.1