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

void Impala::Core::Table::AnnotationTableSet::Correct ( AnnotationTableSet corrections  )  [inline]

Definition at line 161 of file AnnotationTableSet.h.

References Add(), Impala::Core::Table::Copy(), Impala::Core::Table::AnnotationTable::Correct(), GetLabel(), GetTable(), and Size().

00162     {
00163         for (int i=0 ; i<corrections->Size() ; i++)
00164         {
00165             AnnotationTable* corTab = corrections->GetTable(i);
00166             String label = corrections->GetLabel(i);
00167             AnnotationTable* thisTab = GetTable(label);
00168             if (thisTab == 0)
00169             {
00170                 thisTab = new AnnotationTable(corTab->GetLabel(), 0);
00171                 Copy(thisTab, corTab);
00172                 Add(thisTab);
00173             }
00174             else
00175             {
00176                 thisTab->Correct(corTab);
00177             }
00178         }
00179     }

Here is the call graph for this function:


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