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

TableDataView* Impala::Application::MediaTable::TableDataStore::GetTableDataView ( std::string  source,
std::string  view 
) [inline]

Definition at line 66 of file TableDataStore.h.

References DoTableDataStoreAddedTableDataViewEvent(), and mTableDataSources.

00067     {
00068         TableDataViewsMapType::iterator it;
00069 
00070         // Check if view already exists, otherwise return a new view
00071         it=mTableDataSources[source].second.find(view);
00072         if(it == mTableDataSources[source].second.end())
00073         {
00074                 mTableDataSources[source].second[view] =
00075                 new TableDataView(mTableDataSources[source].first);
00076             DoTableDataStoreAddedTableDataViewEvent();
00077         }
00078         return mTableDataSources[source].second[view];
00079     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:45:43 2010 for ImpalaSrc by  doxygen 1.5.1