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

void Impala::Application::Repository::DoDiffQuidTable (  ) 

Definition at line 927 of file mainRepository.cpp.

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

Referenced by mainRepository().

00928 {
00929     ILOG_VAR(Impala.Application.Repository.DoDiffQuidTable);
00930     CmdOptions& options = CmdOptions::GetInstance();
00931 
00932     QuidTableLocator loc1 = GetQuidTableLocator(options, true);
00933     QuidTable* tab1 = QuidTableRepository().Get(loc1);
00934     if (tab1 == 0)
00935         return;
00936     QuidTableLocator loc2 = GetQuidTableLocator(options, false);
00937     QuidTable* tab2 = QuidTableRepository().Get(loc2);
00938     tab1->Diff(tab2);
00939     delete tab2;
00940     delete tab1;
00941 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:15:46 2011 for ImpalaSrc by  doxygen 1.5.1