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

String Impala::Application::MediaTable::WritableTableDataSource::GetTextDataByID ( String  column,
int  row 
) [inline, virtual]

Reimplemented from Impala::Application::MediaTable::TableDataSource.

Definition at line 49 of file WritableTableDataSource.h.

References Impala::MakeString(), mDoubleMap, mIntMap, and mTextMap.

00050     {
00051         if(mTextMap.count(column)&& row < mTextMap[column].size())
00052                 return mTextMap[column][row];
00053         if(mIntMap.count(column) && row < mIntMap[column].size())
00054                 return MakeString(mIntMap[column][row]);
00055         if(mDoubleMap.count(column) && row < mDoubleMap[column].size())
00056                 return MakeString(mDoubleMap[column][row]);
00057         return "";
00058     }

Here is the call graph for this function:


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