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

template<class T>
void Impala::Core::Table::RemoveRow ( T *  table,
int  row 
) [inline]

Definition at line 16 of file RemoveRow.h.

References RemoveRow().

00017 {
00018     if ((row < 0) || (row >= table->Size()))
00019         return;
00020     Column::RemoveRow(table->GetColumn1(), row, table->Size());
00021     Column::RemoveRow(table->GetColumn2(), row, table->Size());
00022     Column::RemoveRow(table->GetColumn3(), row, table->Size());
00023     Column::RemoveRow(table->GetColumn4(), row, table->Size());
00024     Column::RemoveRow(table->GetColumn5(), row, table->Size());
00025     Column::RemoveRow(table->GetColumn6(), row, table->Size());
00026     Column::RemoveRow(table->GetColumn7(), row, table->Size());
00027     Column::RemoveRow(table->GetColumn8(), row, table->Size());
00028     Column::RemoveRow(table->GetColumn9(), row, table->Size());
00029     table->SetSize(table->Size() - 1);
00030 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:19:25 2010 for ImpalaSrc by  doxygen 1.5.1