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

KeywordList* Impala::Persistency::KeywordListRepositoryInFile::Get ( const KeywordListLocator loc  )  [inline]

Definition at line 33 of file KeywordListRepositoryInFile.h.

References Impala::Persistency::KeywordListLocator::GetConceptSet(), Impala::Persistency::RepositoryInFileSystem::GetFile(), Impala::Persistency::File::ReadStrings(), RepFS(), and Impala::Persistency::File::Valid().

00034     {
00035         File file = RepFS().GetFile(loc, "Annotations", loc.GetConceptSet(),
00036                                     false, false);
00037         if (!file.Valid())
00038             return 0;
00039         KeywordList* res = new KeywordList();
00040         file.ReadStrings(std::back_inserter(*res));
00041         return res;
00042     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:23:16 2011 for ImpalaSrc by  doxygen 1.5.1