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

void Impala::Core::Table::AnnotationTable::UpdateQuidMap (  )  [inline]

Definition at line 310 of file AnnotationTable.h.

References Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Get1(), mIsAscending, mQuidMap, and Impala::Core::Table::Table::Size().

00311     {
00312         mIsAscending = true;
00313         for (int i=0 ; i<Size()-1 ; i++)
00314         {
00315             if (Get1(i+1) < Get1(i))
00316             {
00317                 mIsAscending = false;
00318                 break;
00319             }
00320         }
00321         if (!mIsAscending)
00322         {
00323             for (int i=0 ; i<Size() ; i++)
00324                 mQuidMap.Add(Get1(i), i);
00325         }
00326     }

Here is the call graph for this function:


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