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

void Impala::Application::Repository::DoDiffAnnotationTableSet (  ) 

Definition at line 875 of file mainRepository.cpp.

References GetAnnotationTableSetLocator(), Impala::CmdOptions::GetInstance(), and ILOG_VAR.

Referenced by mainRepository().

00876 {
00877     ILOG_VAR(Impala.Application.Repository.DoDiffAnnotationTableSet);
00878     CmdOptions& options = CmdOptions::GetInstance();
00879 
00880     AnnotationTableSetLocator loc1 = GetAnnotationTableSetLocator(options, true);
00881     AnnotationTableSet* tSet1 = AnnotationTableSetRepository().Get(loc1);
00882     if (tSet1 == 0)
00883         return;
00884     AnnotationTableSetLocator loc2 = GetAnnotationTableSetLocator(options, false);
00885     AnnotationTableSet* tSet2 = AnnotationTableSetRepository().Get(loc2);
00886     tSet1->Diff(tSet2);
00887     delete tSet2;
00888     delete tSet1;
00889 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:48:06 2010 for ImpalaSrc by  doxygen 1.5.1